Skip to content

Commit

Permalink
maybe??? please
Browse files Browse the repository at this point in the history
  • Loading branch information
notmarek committed Oct 29, 2023
1 parent bdd1060 commit 433a6d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/master-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- run: mv originalHotfix/* newHotfix
- run: mkdir build
- name: "Building hotix universally"
run: ./utils/buildHotfixForAllLangs.py --universal
run: python ./utils/buildHotfixForAllLangs.py --universal
- name: Moving LanguageBreak directory
run: cp LanguageBreak build/ -r
- run: cp patchedUks.sqsh build/LanguageBreak
Expand Down
2 changes: 1 addition & 1 deletion utils/buildHotfixForAllLangs.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
linesPatched.append(line.format(lang_code=x))
f.writelines(linesPatched)
os.chmod("newHotfix/install-languagebreak-cleanup.sh", 0o755)
subprocess.Popen(("utils/buildHotfix.sh", sys.argv[1] if len(sys.argv) > 1 else "", x)).wait()
subprocess.Popen(("utils/buildHotfix.sh", "--universal" if "--universal" in sys.argv else "", x)).wait()

0 comments on commit 433a6d5

Please sign in to comment.