argo-cd/hack/install.sh
2019-10-11 11:55:48 -07:00

11 lines
193 B
Bash
Executable file

#!/bin/bash
set -eux -o pipefail
export DOWNLOADS=/tmp/dl
export BIN=${BIN:-/usr/local/bin}
mkdir -p $DOWNLOADS
for product in $*; do
"$(dirname $0)/installers/install-${product}.sh"
done