Skip to content

Commit

Permalink
fix arm64 for argo
Browse files Browse the repository at this point in the history
  • Loading branch information
audacioustux authored Sep 10, 2024
1 parent 68108f9 commit 0eacc4b
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/argo/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ install_argocd_cli(){

chmod +x $artifact
sudo mv $artifact /usr/local/bin/argocd
argocd version --client
}

install_argo_cli(){
Expand All @@ -26,11 +25,9 @@ install_argo_cli(){

gunzip $artifact

chmod +x argo-linux-amd64
sudo mv ./argo-linux-amd64 /usr/local/bin/argo

argo version
chmod +x $artifact
sudo mv $artifact /usr/local/bin/argo
}

if [ "$ARGOCD" = true ]; then install_argocd_cli; fi
if [ "$ARGO" = true ]; then install_argo_cli; fi
if [ "$ARGO" = true ]; then install_argo_cli; fi

0 comments on commit 0eacc4b

Please sign in to comment.