Skip to content

Commit

Permalink
Fix portable release folder structure
Browse files Browse the repository at this point in the history
  • Loading branch information
hhannine committed Dec 20, 2019
1 parent 4486e2f commit 2d7e414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion windows-tooling/make-windows-release.py
Expand Up @@ -35,7 +35,7 @@ def make_portable(dst_path):
# copy executable
shutil.copy2("./dist/superpaper.exe", portexec)
# zip it
shutil.make_archive(os.path.join(dst_path, "superpaper-portable"), 'zip', portpath)
shutil.make_archive(portpath, 'zip', dst_path, "superpaper-portable")

def run_inno_script(version_str):
inno_cmd = "iscc ./windows-tooling/inno-setup-script.iss /DMyAppVersion={}".format(version_str)
Expand Down

0 comments on commit 2d7e414

Please sign in to comment.