diff options
| author | Michael Hofmann <kmhofmann@users.noreply.github.com> | 2018-12-11 11:12:21 +0100 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2018-12-11 02:12:21 -0800 |
| commit | 42fd0c982a2e201674cea1979457079bb1bce046 (patch) | |
| tree | 5e0e207a88a998cd09b2c057ac4c7277bbcca61a /scripts/bootstrap.sh | |
| parent | 13d1231ad4d6df3c26c846b542bcc4185615c833 (diff) | |
| download | vcpkg-42fd0c982a2e201674cea1979457079bb1bce046.tar.gz vcpkg-42fd0c982a2e201674cea1979457079bb1bce046.zip | |
Fix unterminated quoted string in bootstrapping script. (#4946)
Diffstat (limited to 'scripts/bootstrap.sh')
| -rw-r--r-- | scripts/bootstrap.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index cc272da58..a8b3d102b 100644 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -181,7 +181,7 @@ selectCXX() gccversion="$(extractStringBetweenDelimiters "$gccversion" "gcc version " ".")" if [ "$gccversion" -lt "6" ]; then echo "CXX ($CXX) is too old; please install a newer compiler such as g++-7." - echo "On Ubuntu try the following: + echo "On Ubuntu try the following:" echo "sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y" echo "sudo apt-get update -y" echo "sudo apt-get install g++-7 -y" |
