lint_localized_strings 248 B

1234567891011
  1. #!/bin/bash
  2. # lint localized strings
  3. set +o pipefail
  4. plutil -lint CutBox/Localization/*lproj/Localizable.strings | \
  5. while read result; do
  6. [ "" != "$GITHUB_STEP_SUMMARY" ] && echo "- $result" >> "$GITHUB_STEP_SUMMARY"
  7. echo "$result"
  8. done