Skip to content

Commit 1e186a8

Browse files
authored
Merge pull request #401 from renderorange/fix-bash-variable-expansion-for-debian-installer
Fix bash variable expansion for Debian installer
2 parents 7680df5 + 6f70d7b commit 1e186a8

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)