summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2023-06-19 15:19:57 +0200
committerLinus Färnstrand <linus@mullvad.net>2023-06-26 08:56:46 +0200
commit5daa1654aacc23e4c0751c408b099bae9cecf25b (patch)
tree210d0b63228507f6e18003152b5d187756d2ed14
parent575909316a7b4489c7d77dd0f1f9307fae95c921 (diff)
downloadmullvadvpn-5daa1654aacc23e4c0751c408b099bae9cecf25b.tar.xz
mullvadvpn-5daa1654aacc23e4c0751c408b099bae9cecf25b.zip
Fix argument to `read` in build.sh that did not work
-rwxr-xr-xbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 30b954c9ad..2539d61203 100755
--- a/build.sh
+++ b/build.sh
@@ -104,7 +104,7 @@ if [[ "$SIGN" == "true" ]]; then
exit 1
fi
if [[ -z ${CSC_KEY_PASSWORD-} ]]; then
- read -spr "CSC_KEY_PASSWORD = " CSC_KEY_PASSWORD
+ read -rsp "CSC_KEY_PASSWORD = " CSC_KEY_PASSWORD
echo ""
export CSC_KEY_PASSWORD
fi