Compare commits
No commits in common. "4bf12e1e2b27b200f9dbb8e71b77eda32b2b84ac" and "50b3f050c4b42c00d31e9fd125ea29a0a7e6d413" have entirely different histories.
4bf12e1e2b
...
50b3f050c4
1 changed files with 2 additions and 3 deletions
|
@ -2,7 +2,6 @@
|
|||
import os
|
||||
import sys
|
||||
import shutil
|
||||
import requests
|
||||
import json
|
||||
import subprocess
|
||||
from ctcconfig import *
|
||||
|
@ -232,9 +231,9 @@ APK_PATH = os.path.join(WORK_FOLDER, "discord",
|
|||
|
||||
# Sign the APK
|
||||
if DO_APKSIGNER:
|
||||
subprocess.run(f"apksigner sign --ks {KEYSTORE_FILE} "
|
||||
subprocess.run(f"apksigner sign --ks {KEYSTORE_FILE}"
|
||||
f"--ks-key-alias {KEYSTORE_ALIAS} "
|
||||
f"--ks-pass pass:{KEYSTORE_PASS} "
|
||||
f"--ks-pass pass:{KEYSTORE_PASS}"
|
||||
f"{APK_PATH}",
|
||||
shell=True,
|
||||
cwd=WORK_FOLDER)
|
||||
|
|
Reference in a new issue