Skip to content

Commit

Permalink
pleaseee
Browse files Browse the repository at this point in the history
  • Loading branch information
notmarek committed Oct 29, 2023
1 parent b96d1cf commit 1bc7c26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion utils/buildHotfix.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
if [ $1 == "--universal" ] ; then
if [ $1 == "universal" ] ; then
DEVICES=$(echo "ALL" | python utils/parseKindleToolDevices.py)
else
DEVICES=$(./utils/kindletool convert update_kindle*.bin --info -k 2>&1 | python utils/parseKindleToolDevices.py)
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", "--universal" if "--universal" in sys.argv else "", x)).wait()
subprocess.Popen(("utils/buildHotfix.sh", "universal" if "--universal" in sys.argv else "", x)).wait()

0 comments on commit 1bc7c26

Please sign in to comment.