diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2023-06-19 15:19:57 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2023-06-26 08:56:46 +0200 |
| commit | 5daa1654aacc23e4c0751c408b099bae9cecf25b (patch) | |
| tree | 210d0b63228507f6e18003152b5d187756d2ed14 | |
| parent | 575909316a7b4489c7d77dd0f1f9307fae95c921 (diff) | |
| download | mullvadvpn-5daa1654aacc23e4c0751c408b099bae9cecf25b.tar.xz mullvadvpn-5daa1654aacc23e4c0751c408b099bae9cecf25b.zip | |
Fix argument to `read` in build.sh that did not work
| -rwxr-xr-x | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
