We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ee3712 commit fb78ed9Copy full SHA for fb78ed9
scripts/install.sh
@@ -18,6 +18,7 @@ fi
18
19
LATEST_VERSION=$(curl --silent "https://api.github.com/repos/stuartleeks/devcontainer-cli/releases/latest" | grep -Po '"tag_name": "\K.*?(?=")')
20
echo $LATEST_VERSION
21
+mkdir -p ~/bin
22
wget https://github.com/stuartleeks/devcontainer-cli/releases/download/${LATEST_VERSION}/devcontainer-cli_${OS}_${ARCH}.tar.gz
-tar -C /usr/bin -zxvf devcontainer-cli_${OS}_${ARCH}.tar.gz devcontainer
23
-chmod +x /usr/bin/devcontainer
+tar -C ~/bin -zxvf devcontainer-cli_${OS}_${ARCH}.tar.gz devcontainer
24
+chmod +x ~/bin/devcontainer
0 commit comments