From 365279ea95a6c76021e2100e51e71b1991fea32b Mon Sep 17 00:00:00 2001 From: Alejandro Colomar Date: Mon, 25 Nov 2024 15:22:10 +0100 Subject: [PATCH] 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 --- share/container-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' -- 2.47.2