correction to script

This commit is contained in:
Matt Troutman 2024-09-27 10:13:06 -05:00
parent c3e438805f
commit 6443deee57
No known key found for this signature in database

View file

@ -1,7 +1,7 @@
#! /bin/zsh
#if current working directory is named font_files or custom_fonts, exit
if [[ $PWD == *"font_files"* ]] || [[ $PWD == *"custom_fonts"* ]]; then
if [[ $PWD == *"font_files" ]] || [[ $PWD == *"custom_fonts" ]]; then
echo "You are in the wrong directory. Please move to the individual font folder."
exit
fi