mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-22 01:17:16 +00:00
Signed-off-by: nitishfy <justnitish06@gmail.com> Co-authored-by: Alexandre Gaudreault <alexandre_gaudreault@intuit.com>
7 lines
101 B
Bash
Executable file
7 lines
101 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "Hello from my-plugin"
|
|
|
|
if [ "$#" -gt 0 ]; then
|
|
echo "Arguments received: $@"
|
|
fi
|