1
0

contrib: shell scripts: add quotes around more variables

This commit is contained in:
SomberNight
2025-09-02 17:29:48 +00:00
parent 1c695dd53a
commit 4a0a3bb38a
11 changed files with 27 additions and 27 deletions

View File

@@ -2,7 +2,7 @@
set -e
here=$(dirname "$0")
here="$(dirname "$0")"
if [ -z "$WIN_SIGNING_PASSWORD" ]; then
echo "password missing"
exit 1

View File

@@ -5,9 +5,9 @@ set -e
PROJECT_ROOT="$(dirname "$(readlink -e "$0")")/../.."
CONTRIB="$PROJECT_ROOT/contrib"
here=$(dirname "$0")
here="$(dirname "$0")"
test -n "$here" -a -d "$here" || exit
cd $here
cd "$here"
if ! which osslsigncode > /dev/null 2>&1; then
echo "Please install osslsigncode"