diff options
| author | Joakim Hulthe <joakim@hulthe.net> | 2024-02-28 15:16:13 +0100 |
|---|---|---|
| committer | Joakim Hulthe <joakim@hulthe.net> | 2024-03-05 11:36:13 +0100 |
| commit | c26fab67d5e90cf1fb311b5315f84e48fddc88fa (patch) | |
| tree | 47b61e92bd880024ada80049bc36e60b59dd4a09 /scripts | |
| parent | 941d74aaf4e0f97e19ee29146e8e48c0fcb25e75 (diff) | |
| download | mullvadvpn-c26fab67d5e90cf1fb311b5315f84e48fddc88fa.tar.xz mullvadvpn-c26fab67d5e90cf1fb311b5315f84e48fddc88fa.zip | |
Fix shellcheck warnings and notes
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/localization | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/localization b/scripts/localization index 097f113a4d..f1a8663acc 100755 --- a/scripts/localization +++ b/scripts/localization @@ -5,6 +5,7 @@ set -eu SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" cd "$SCRIPT_DIR" +# shellcheck disable=SC1091 source utils/log function main { @@ -106,6 +107,8 @@ function download_from_crowdin { function verify { sync_localizations git diff + + # shellcheck disable=SC2251 ! git status -s | grep . local out_of_sync=$? |
