summaryrefslogtreecommitdiff
path: root/deploy.sh
diff options
context:
space:
mode:
authorJoshua Liu <joshua.liu@sourceobby.com>2025-09-13 17:07:46 -0400
committerJoshua Liu <joshua.liu@sourceobby.com>2025-09-13 17:07:46 -0400
commitb989082739c317f896d054d43b615b83e6ac0502 (patch)
treec57fe5cd6c5d9158c3c13add98e8413341d43504 /deploy.sh
parent1093016edd7ee3e96c41dd81e64a884b02fe3242 (diff)
feat: modified the script to actually correctly modify the tex templates
Diffstat (limited to 'deploy.sh')
-rwxr-xr-xdeploy.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/deploy.sh b/deploy.sh
index 819d7e0..befdf70 100755
--- a/deploy.sh
+++ b/deploy.sh
@@ -39,6 +39,6 @@ templates=`ls | grep .tex`
for file in 'seq $templates'
do
- cat test | sed -r "s/^### Insert graphicspath command here ###/\\\graphicspath {$path}/" > file
+ sed -r "s/^### Insert graphicspath command here ###/\\\graphicspath {$path}/" -i $file
done