diff --git a/packages/argocd/v2.10.6/setup.d/01-setup-binary.sh b/packages/argocd/v2.10.6/setup.d/01-setup-binary.sh index 9824072..12562dd 100755 --- a/packages/argocd/v2.10.6/setup.d/01-setup-binary.sh +++ b/packages/argocd/v2.10.6/setup.d/01-setup-binary.sh @@ -5,4 +5,8 @@ set -eo pipefail PACKAGE_DIR=$(cd "$(dirname $BASH_SOURCE)/.."; pwd) +# Rename the binary mv $PACKAGE_DIR/bin/argocd-linux-amd64 $PACKAGE_DIR/bin/argocd + +# Make the binary executable +chmod 755 $PACKAGE_DIR/bin/argocd \ No newline at end of file diff --git a/packages/crane/v0.19.1/setup.d/01-setup-binary.sh b/packages/crane/v0.19.1/setup.d/01-setup-binary.sh index 936d164..a7872c4 100755 --- a/packages/crane/v0.19.1/setup.d/01-setup-binary.sh +++ b/packages/crane/v0.19.1/setup.d/01-setup-binary.sh @@ -5,4 +5,5 @@ set -eo pipefail PACKAGE_DIR=$(cd "$(dirname $BASH_SOURCE)/.."; pwd) +# Make the binary executable chmod 755 $PACKAGE_DIR/bin/crane \ No newline at end of file