Skip to content

Commit

Permalink
derp: fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Aug 21, 2024
1 parent c5c8cf6 commit 22f192a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions html5/js/Utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
*/

const Utilities = {
VERSION: "15",
REVISION : 1604,
VERSION : "15",
REVISION : 0,
LOCAL_MODIFICATIONS: 0,
BRANCH: "master",

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ def set_version(new_version: str) -> None:
"%define release .*": f"%define release 1.r{revision}%{{?dist}}",
},
"./html5/js/Utilities.js": {
fr'VERSION\s*: "{VERSION}"': f'VERSION = "{new_version}"',
fr'VERSION\s*: "{VERSION}"': f'VERSION : "{new_version}"',
fr"REVISION\s*: [0-9]*": f"REVISION : {revision}",
r'LOCAL_MODIFICATIONS\s*: [0-9]*': f'LOCAL_MODIFICATIONS: {local_modifications}',
r'BRANCH\s*: "[a-zA-Z]*"': f'BRANCH: "{branch}"',
Expand Down

0 comments on commit 22f192a

Please sign in to comment.