mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-11 15:15:26 +01:00
14 lines
338 B
Bash
Executable file
14 lines
338 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -o pipefail -eux
|
|
|
|
echo "${PATH/\~/${HOME}}"
|
|
echo "${HOME}"
|
|
command -v ansible
|
|
|
|
pip install --upgrade --user pip
|
|
pip install --upgrade --user ansible-lint
|
|
|
|
PATH="${PATH/\~/${HOME}}" ansible-lint \
|
|
--exclude changelogs/ \
|
|
--profile=production
|