mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
Split integration tests out from Makefile. (#17976)
This commit is contained in:
12
test/integration/targets/args/runme.sh
Executable file
12
test/integration/targets/args/runme.sh
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -eu
|
||||
|
||||
echo "arg[#]: $#"
|
||||
echo "arg[0]: $0"
|
||||
|
||||
i=0
|
||||
for arg in "$@"; do
|
||||
i=$((i+1))
|
||||
echo "arg[$i]: ${arg}"
|
||||
done
|
||||
Reference in New Issue
Block a user