Skip to content
This repository has been archived by the owner on Apr 3, 2022. It is now read-only.

Commit

Permalink
Add lang directory to appx generation
Browse files Browse the repository at this point in the history
  • Loading branch information
spikespaz committed Jul 5, 2020
1 parent 83269bb commit 12398d9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def copy_files(version):

if "configure" in ARGS.build:
create_directory(BIN_PATH)
create_directory(path_join(BIN_PATH, "lang"))
create_directory(BIN_PATH + "/lang")
create_directory(VARS_PATH)

log_print("Building configure binary: " + CONFIGURE_BIN)
Expand Down Expand Up @@ -258,6 +258,7 @@ def copy_files(version):
log_print("Making store package: " + PACKAGE_FILE)

create_directory(STORE_PATH + "/Assets")
create_directory(STORE_PATH + "/lang")

copy_file(ASSETS_PATH + "/logo.png", STORE_PATH + "/Assets/Logo-Store.png")
copy_file(ASSETS_PATH + "/logo_44.png", STORE_PATH + "/Assets/Logo-44.png")
Expand All @@ -266,6 +267,8 @@ def copy_files(version):
copy_file(BIN_PATH + "/configure.exe", STORE_PATH + "/configure.exe")
copy_file(BIN_PATH + "/deflector.exe", STORE_PATH + "/deflector.exe")
copy_file(BIN_PATH + "/engines.txt", STORE_PATH + "/engines.txt")

copy_dir(BIN_PATH + "/lang", STORE_PATH + "/lang")

manifest_file = STORE_PATH + "/AppxManifest.xml"
log_print("Creating file: " + manifest_file)
Expand Down

0 comments on commit 12398d9

Please sign in to comment.