mirror of
https://github.com/argoproj/argo-cd
synced 2026-05-24 09:50:08 +00:00
7 lines
265 B
Bash
Executable file
7 lines
265 B
Bash
Executable file
#!/bin/bash
|
|
set -eux -o pipefail
|
|
|
|
[ -e $DOWNLOADS/swagger ] || curl -sLf --retry 3 -o $DOWNLOADS/swagger https://github.com/go-swagger/go-swagger/releases/download/v0.19.0/swagger_linux_amd64
|
|
cp $DOWNLOADS/swagger $BIN/swagger
|
|
chmod +x $BIN/swagger
|
|
swagger version
|