From: Alejandro Colomar Date: Mon, 25 Nov 2024 14:22:10 +0000 (+0100) Subject: share/container-build.sh: Fix path X-Git-Tag: 4.17.0-rc1~25 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=365279ea95a6c76021e2100e51e71b1991fea32b;p=thirdparty%2Fshadow.git share/container-build.sh: Fix path The instructions are written so that this script should be run from the root of the repository. Specify the path from the root of the repo. Before this fix, the command needed to be run from within . Signed-off-by: Alejandro Colomar --- diff --git a/share/container-build.sh b/share/container-build.sh index dc3e8dce3..0116c17d3 100755 --- a/share/container-build.sh +++ b/share/container-build.sh @@ -8,7 +8,7 @@ # set -eE -cd ansible/ +cd share/ansible/ ansible-playbook playbook.yml -i inventory.ini -e 'distribution=alpine' ansible-playbook playbook.yml -i inventory.ini -e 'distribution=debian' ansible-playbook playbook.yml -i inventory.ini -e 'distribution=fedora'