summaryrefslogtreecommitdiffhomepage
path: root/android/scripts
diff options
context:
space:
mode:
authorAlbin <albin@mullvad.net>2025-07-07 15:17:03 +0200
committerAlbin <albin@mullvad.net>2025-07-07 15:17:26 +0200
commita81feb3befa7683255ffc028c9fe5dd1b8c63ace (patch)
tree4dbd13e80c4868ac42a2892c8d15c77fffb2698e /android/scripts
parentad6aed0e6d5f8c7c3c7c113cae5a48a5fe8b2cb7 (diff)
downloadmullvadvpn-a81feb3befa7683255ffc028c9fe5dd1b8c63ace.tar.xz
mullvadvpn-a81feb3befa7683255ffc028c9fe5dd1b8c63ace.zip
Simplify prepare script dirty check syntax
Diffstat (limited to 'android/scripts')
-rwxr-xr-xandroid/scripts/prepare-release.sh2
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