mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-21 20:45:29 +03:00
c2683e0ed0
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
18 lines
432 B
Bash
Executable file
18 lines
432 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors
|
|
# SPDX-FileCopyrightText: 2021 Andy Scherzinger <info@andy-scherzinger.de>
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
#
|
|
|
|
result=""
|
|
|
|
for log in fastlane/metadata/android/*/changelogs/*
|
|
do
|
|
if [[ -e $log && $(wc -m $log | cut -d" " -f1) -gt 500 ]]
|
|
then
|
|
result=$log"<br>"$result
|
|
fi
|
|
done
|
|
|
|
echo -e "$result";
|