Skip to content

Commit

Permalink
Fix string quotaton for sudo
Browse files Browse the repository at this point in the history
  • Loading branch information
BanzaiMan committed Feb 17, 2016
1 parent f54b73c commit 5b174ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/travis/build/appliances/update_glibc.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ def apply
sh.export 'DEBIAN_FRONTEND', 'noninteractive', echo: true
sh.cmd <<-EOF
if [ ! $(uname|grep Darwin) ]; then
sudo -E apt-get -yq update &>> ~/apt-get-update.log"
sudo -E apt-get -yq --no-install-suggests --no-install-recommends "--force-yes install libc6"
sudo -E apt-get -yq update &>> ~/apt-get-update.log
sudo -E apt-get -yq --no-install-suggests --no-install-recommends --force-yes install libc6
fi
EOF
end
Expand Down

0 comments on commit 5b174ec

Please sign in to comment.