tools: fix: ubounded variable in win installer build script

This commit is contained in:
Juraj Michálek 2021-01-19 13:34:32 +01:00
parent 799d816e24
commit 6d7edcb130

View File

@ -10,10 +10,7 @@
set -e
set -u
INSTALLER_TYPE="$1"
if [[ -z "$INSTALLER_TYPE" ]]; then
INSTALLER_TYPE="full"
fi
INSTALLER_TYPE="${1-full}"
echo "Selected installer type: $INSTALLER_TYPE"
echo "Available installer types: full, netinst"