13 lines
269 B
Bash
Executable File
13 lines
269 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
CURRENT_DIR="$(cd "$(dirname "$BASH_SOURCE")"; pwd)"
|
|
|
|
pushd "$CURRENT_DIR/.." >/dev/null
|
|
docker run --rm -t \
|
|
-v "$CURRENT_DIR/..:/runner" \
|
|
ansible/ansible-runner \
|
|
ansible-galaxy collection build --force
|
|
popd >/dev/null
|