mirror of
https://github.com/argoproj/argo-cd
synced 2026-05-24 09:50:08 +00:00
11 lines
193 B
Bash
Executable file
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
|