From b69092891bdaa2bbc4895d78bb6d2a20dd7f0dd7 Mon Sep 17 00:00:00 2001 From: Jonathan DeMasi Date: Wed, 6 May 2026 20:49:21 -0600 Subject: [PATCH] update runner script to accommodate new repo name --- misc/ansible-runner.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/misc/ansible-runner.sh b/misc/ansible-runner.sh index 5cd50d0..6550868 100644 --- a/misc/ansible-runner.sh +++ b/misc/ansible-runner.sh @@ -7,7 +7,7 @@ cd /home/ansible mkdir -p /home/ansible/logs -cd /home/ansible/infra +cd /home/ansible/ansible git fetch origin > /dev/null 2>&1 BEHIND_COUNT=$(git rev-list --count HEAD..@{u}) @@ -25,10 +25,10 @@ python3 -m venv /home/ansible/venv . /home/ansible/venv/bin/activate # Install requirements for ansible -pip install -r /home/ansible/infra/ansible/requirements.txt +pip install -r /home/ansible/ansible/ansible/requirements.txt # Change into ansible subdir of repo -cd /home/ansible/infra/ansible +cd /home/ansible/ansible/ansible source /home/ansible/.bws