Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
erebe authored Dec 17, 2024
1 parent 0739898 commit 6feb097
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,12 @@
curl -o $output_tgz -sOL "https://github.com/${repo}/releases/download/${latest_tag}/qovery-cli_${version}_${os}_${arch}.tar.gz"

echo "[+] Uncompressing qovery binary in $dest_binary directory (sudo permissions are required)"
sudo tar -xzf $output_tgz -C $dest_binary qovery
if [ "$EUID" -ne 0 ]
then
sudo tar -xzf $output_tgz -C $dest_binary qovery
else
tar -xzf $output_tgz -C $dest_binary qovery
fi
rm -f $output_tgz

echo -e "\nQovery CLI is installed, you can now use 'qovery' command line"

0 comments on commit 6feb097

Please sign in to comment.