From 870a207520fd595b06d44453e51635fa8b3abf29 Mon Sep 17 00:00:00 2001 From: Joshua Liu Date: Sat, 13 Sep 2025 17:17:13 -0400 Subject: bugfix: fixed an error with the for loop --- deploy.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'deploy.sh') diff --git a/deploy.sh b/deploy.sh index befdf70..3fde734 100755 --- a/deploy.sh +++ b/deploy.sh @@ -30,15 +30,14 @@ cp "${cur}/assets/"*.png ${path} echo "done" - # Now we modify the template files so that they point to the right directory echo "Modifying the template files" -templates=`ls | grep .tex` - -for file in 'seq $templates' +for file in `ls | grep .tex` do sed -r "s/^### Insert graphicspath command here ###/\\\graphicspath {$path}/" -i $file done +echo "done" + -- cgit v1.2.3