mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-10 14:45:28 +01:00
* This is a temporary measure until we stop covering Python2 * Skipped sanity[cannot-ignore] to keep backward compatibility with Python2 * Consolidate all ansible-lint option locations into .ansible-lint * Fixed some typos Signed-off-by: saito-hideki <saito@fgrep.org>
13 lines
298 B
Bash
Executable file
13 lines
298 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
|
|
|
|
# To specify additional options, you can specify them into .ansible-lint file.
|
|
PATH="${PATH/\~/${HOME}}" ansible-lint
|