Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan White <support@dmapps.us>2021-05-29 19:48:08 +0300
committerJonathan White <support@dmapps.us>2021-05-30 15:44:09 +0300
commit62486974434f640b85b3d63f6d6c79715775e07e (patch)
treee78406bbb63cd2c249a687573f777b9168b29585
parentdef08ac1dbfd3403ae0de9401a730175c9306935 (diff)
Fix read usage in release-tool
* Fixes #6562
-rwxr-xr-xrelease-tool5
1 files changed, 3 insertions, 2 deletions
diff --git a/release-tool b/release-tool
index a73dcb08f..d00e9436b 100755
--- a/release-tool
+++ b/release-tool
@@ -1297,10 +1297,11 @@ appsign() {
elif [ "$(uname -o)" == "Msys" ]; then
if [[ ! -f "${key}" ]]; then
- exitError "Key file was not found!"
+ exitError "Appsign key file was not found! (${key})"
fi
- read -s -p "Key password: " password
+ logInfo "Using appsign key ${key}."
+ IFS=$'\n' read -s -r -p "Key password: " password
echo
for f in "${sign_files[@]}"; do