From 4eac6fcf7abd771a6069099b9063139794ac3d73 Mon Sep 17 00:00:00 2001 From: Matt Troutman Date: Fri, 27 Sep 2024 12:28:56 -0500 Subject: [PATCH] Fix double quotes --- iterate.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iterate.sh b/iterate.sh index d44f071..1393a4c 100644 --- a/iterate.sh +++ b/iterate.sh @@ -6,10 +6,10 @@ mydir=$(dirname "$0") PREP_SCRIPT="$(cd "$(dirname "$0")" && pwd)/prep 1 font.sh" #activate python environment -source "$(cd "$(dirname "$0")" && pwd)/.env/bin/activate" +source "$mydir"/.env/bin/activate #move orphans before we do anything else -python $mydir/orphans.py +python3 "$mydir"/orphans.py # Check if the prep script exists if [[ ! -f "$PREP_SCRIPT" ]]; then