]> git.ipfire.org Git - thirdparty/shadow.git/commitdiff
share/container-build.sh: Fix path
authorAlejandro Colomar <alx@kernel.org>
Mon, 25 Nov 2024 14:22:10 +0000 (15:22 +0100)
committerIker Pedrosa <ikerpedrosam@gmail.com>
Mon, 25 Nov 2024 15:23:43 +0000 (16:23 +0100)
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 <share/>.

Signed-off-by: Alejandro Colomar <alx@kernel.org>
share/container-build.sh

index dc3e8dce3e3ed276e21eaca06f8d705ae0c14450..0116c17d3e9d7df3873526191e01bd3e981d17c2 100755 (executable)
@@ -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'