Skip to content

Commit 6f70d7b

Browse files
committed
Fix bash variable expansion for Debian installer
Fixes issue #400
1 parent 5b69c6a commit 6f70d7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

installers/debian.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function update_system_packages() {
88
install_log "Updating sources"
99
if [ -f /etc/os-release ]; then
1010
. /etc/os-release
11-
if [ $NAME == 'Ubuntu' ]; then
11+
if [ "$NAME" == 'Ubuntu' ]; then
1212
sudo add-apt-repository universe || install_error "Couldn't enable universe repository"
1313
fi
1414
fi

0 commit comments

Comments
 (0)