diff options
author | Joshua Liu <joshua.liu@sourceobby.com> | 2025-09-13 17:07:46 -0400 |
---|---|---|
committer | Joshua Liu <joshua.liu@sourceobby.com> | 2025-09-13 17:07:46 -0400 |
commit | b989082739c317f896d054d43b615b83e6ac0502 (patch) | |
tree | c57fe5cd6c5d9158c3c13add98e8413341d43504 /deploy.sh | |
parent | 1093016edd7ee3e96c41dd81e64a884b02fe3242 (diff) |
feat: modified the script to actually correctly modify the tex templates
Diffstat (limited to 'deploy.sh')
-rwxr-xr-x | deploy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |