mirror of
https://github.com/argoproj/argo-cd
synced 2026-05-02 22:37:18 +00:00
17 lines
240 B
Text
17 lines
240 B
Text
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
case "$1" in
|
||
|
|
"--flag1")
|
||
|
|
echo "Flag1 detected: $2"
|
||
|
|
exit 0
|
||
|
|
;;
|
||
|
|
"--flag3")
|
||
|
|
echo "Unknown argument: --flag3" >&2
|
||
|
|
exit 1
|
||
|
|
;;
|
||
|
|
*)
|
||
|
|
echo "Plugin not found or invalid command" >&2
|
||
|
|
exit 127
|
||
|
|
;;
|
||
|
|
esac
|