Fix double quotes

This commit is contained in:
Matt Troutman 2024-09-27 12:28:56 -05:00
parent 0a9ea08804
commit 4eac6fcf7a
No known key found for this signature in database

View file

@ -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