mirror of
https://github.com/SinTan1729/ReVancedBuilder.git
synced 2024-12-25 20:28:37 -06:00
fix: Run post_script at end
This commit is contained in:
parent
c770b5f821
commit
fd667339da
1 changed files with 2 additions and 1 deletions
|
@ -185,7 +185,8 @@ elif flag != 'checkonly':
|
|||
with open('versions.json', 'w') as f:
|
||||
json.dump(appstate['present_vers'], f, indent=4)
|
||||
try:
|
||||
subprocess.run(f"{appstate['build_config']['post_script']['file']} {timestamp}", shell=True)
|
||||
subprocess.run(
|
||||
f"{appstate['build_config']['post_script']['file']} {appstate['timestamp']}", shell=True)
|
||||
except:
|
||||
pass
|
||||
|
||||
|
|
Loading…
Reference in a new issue