mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 21:00:22 -07:00
Split integration tests out from Makefile. (#17976)
This commit is contained in:
parent
bf3d546d9a
commit
80a5c70ad7
169 changed files with 612 additions and 420 deletions
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
|
Loading…
Add table
Add a link
Reference in a new issue