aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorchausner <chausner@users.noreply.github.com>2020-12-03 23:12:40 +0100
committerGitHub <noreply@github.com>2020-12-03 14:12:40 -0800
commit8062187851d61358567578896f48b885d6e6ca13 (patch)
treeb413e7b5a56758b86c44f00994de4ce8874eb147 /scripts
parentecba240490afcc65e6ec07e49bf7f763a1a2b28b (diff)
downloadvcpkg-8062187851d61358567578896f48b885d6e6ca13.tar.gz
vcpkg-8062187851d61358567578896f48b885d6e6ca13.zip
[vcpkg bootstrap] Include "zip" as required apt dependency in bootstrap error message (#14803)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/bootstrap.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh
index e5503f386..fa1a64622 100644
--- a/scripts/bootstrap.sh
+++ b/scripts/bootstrap.sh
@@ -74,7 +74,7 @@ vcpkgCheckRepoTool()
__tool=$1
if ! command -v "$__tool" >/dev/null 2>&1 ; then
echo "Could not find $__tool. Please install it (and other dependencies) with:"
- echo "sudo apt-get install curl unzip tar"
+ echo "sudo apt-get install curl zip unzip tar"
exit 1
fi
}