diff options
| author | Albin <albin@mullvad.net> | 2025-07-07 15:17:03 +0200 |
|---|---|---|
| committer | Albin <albin@mullvad.net> | 2025-07-07 15:17:26 +0200 |
| commit | a81feb3befa7683255ffc028c9fe5dd1b8c63ace (patch) | |
| tree | 4dbd13e80c4868ac42a2892c8d15c77fffb2698e /android/scripts | |
| parent | ad6aed0e6d5f8c7c3c7c113cae5a48a5fe8b2cb7 (diff) | |
| download | mullvadvpn-a81feb3befa7683255ffc028c9fe5dd1b8c63ace.tar.xz mullvadvpn-a81feb3befa7683255ffc028c9fe5dd1b8c63ace.zip | |
Simplify prepare script dirty check syntax
Diffstat (limited to 'android/scripts')
| -rwxr-xr-x | android/scripts/prepare-release.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/scripts/prepare-release.sh b/android/scripts/prepare-release.sh index 2bab05fd4c..cc3983d67c 100755 --- a/android/scripts/prepare-release.sh +++ b/android/scripts/prepare-release.sh @@ -26,7 +26,7 @@ if [[ -z ${PRODUCT_VERSION+x} ]]; then exit 1 fi -if test -n "$(git status --porcelain)"; then +if [[ -n "$(git status --porcelain)" ]]; then echo "Dirty working directory! Will not accept that for an official release." exit 1 fi |
