mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
Signed-off-by: nitishfy <justnitish06@gmail.com> Co-authored-by: Alexandre Gaudreault <alexandre_gaudreault@intuit.com>
16 lines
240 B
Bash
Executable file
16 lines
240 B
Bash
Executable file
#!/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
|