We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d16680f commit 5a992c8Copy full SHA for 5a992c8
1 file changed
scripts/install_tools.sh
@@ -2,6 +2,7 @@
2
set -euo pipefail
3
4
PACK_VERSION=latest
5
+BP_PACKAGED_PATH=${BP_PACKAGED_PATH:-""}
6
usage() {
7
echo "Usage: install_tools.sh <version: optional>"
8
echo "Example: install_tools.sh 0.0.9"
@@ -108,5 +109,7 @@ mkdir -p .bin
108
109
export PATH=$(pwd)/.bin:$PATH
110
111
install_pack
-install_packager
112
+if [[ -z "${BP_PACKAGED_PATH}" ]]; then
113
+ install_packager
114
+fi
115
0 commit comments