Skip to content

Commit

Permalink
Update PAC_build.py
Browse files Browse the repository at this point in the history
  • Loading branch information
PaPerseller authored Aug 26, 2024
1 parent 65a127b commit 28bd3a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/generate/PAC_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def main():
date = now.strftime("%Y%m%d")
with open("./scripts/generate/code.js", "r") as f:
code = f.read()
code = code.replace("@@TIME@@", now.isoformat()[:-7])
code = code.replace("@@TIME@@", now.strftime("%Y-%m-%d"))

os.makedirs(OUT_DIR, mode=0o755, exist_ok=True)

Expand All @@ -40,4 +40,4 @@ def main():


if __name__ == '__main__':
main()
main()

0 comments on commit 28bd3a7

Please sign in to comment.