mirror of
https://github.com/msmhq/msm.git
synced 2024-08-30 18:12:35 +00:00
Merge pull request #401 from renderorange/fix-bash-variable-expansion-for-debian-installer
Fix bash variable expansion for Debian installer
This commit is contained in:
@ -8,7 +8,7 @@ function update_system_packages() {
|
||||
install_log "Updating sources"
|
||||
if [ -f /etc/os-release ]; then
|
||||
. /etc/os-release
|
||||
if [ $NAME == 'Ubuntu' ]; then
|
||||
if [ "$NAME" == 'Ubuntu' ]; then
|
||||
sudo add-apt-repository universe || install_error "Couldn't enable universe repository"
|
||||
fi
|
||||
fi
|
||||
|
Reference in New Issue
Block a user