Skip to content

Commit

Permalink
Fix syntax error in deploy script - need a comma between replace dire…
Browse files Browse the repository at this point in the history
…ctives.
  • Loading branch information
Benjamin Clark committed Apr 11, 2024
1 parent 9ae78e0 commit 41cbdd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/scripts/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def deploy():
# Massage the paths appropriately
for s in input:
s = (
s.replace("/assets/", f"/aria/{distdir}/assets/")
s.replace("/assets/", f"/aria/{distdir}/assets/"),
s.replace("/favicon.png", f"/aria/{distdir}/favicon.png")
)
output.write(s)
Expand Down

0 comments on commit 41cbdd3

Please sign in to comment.