repo created
This commit is contained in:
commit
1ef725ef20
2483 changed files with 278273 additions and 0 deletions
18
scripts/checkGplayLimitation.sh
Executable file
18
scripts/checkGplayLimitation.sh
Executable file
|
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/env bash
|
||||
#
|
||||
# SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
|
||||
# SPDX-FileCopyrightText: 2019 Tobias Kaminsky <tobias@kaminsky.me>
|
||||
# SPDX-License-Identifier: AGPL-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";
|
||||
Loading…
Add table
Add a link
Reference in a new issue