checkGplayLimitation.sh 442 B

123456789101112131415161718
  1. #!/usr/bin/env bash
  2. #
  3. # SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
  4. # SPDX-FileCopyrightText: 2019 Tobias Kaminsky <tobias@kaminsky.me>
  5. # SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
  6. #
  7. result=""
  8. for log in fastlane/metadata/android/*/changelogs/*
  9. do
  10. if [[ -e $log && $(wc -m $log | cut -d" " -f1) -gt 500 ]]
  11. then
  12. result=$log"<br>"$result
  13. fi
  14. done
  15. echo -e "$result";