diff options
author | Leon Krause <lk@leonkrause.com> | 2018-05-14 15:07:29 +0200 |
---|---|---|
committer | Leon Krause <lk@leonkrause.com> | 2018-05-14 15:30:27 +0200 |
commit | 504ffda8d711b2747bf7efbbc13ca8e427eab6d1 (patch) | |
tree | 6371e6114cba570afc4198ce90d7e49c0c1ad2d9 /platform/javascript/SCsub | |
parent | a0ea57b72cfd2f3895e93545f557d0d505e0ee89 (diff) | |
download | redot-engine-504ffda8d711b2747bf7efbbc13ca8e427eab6d1.tar.gz |
Small refactoring in HTML5 build scripts
Drop logic for non-existent 'profile' target
Diffstat (limited to 'platform/javascript/SCsub')
-rw-r--r-- | platform/javascript/SCsub | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/javascript/SCsub b/platform/javascript/SCsub index 5991075e29..98988d97fd 100644 --- a/platform/javascript/SCsub +++ b/platform/javascript/SCsub @@ -30,8 +30,8 @@ zip_files = env.InstallAs([ zip_dir.File('godot.wasm'), zip_dir.File('godot.html') ], [ - js_wrapped, - wasm, - '#misc/dist/html/default.html' + js_wrapped, + wasm, + '#misc/dist/html/default.html' ]) env.Zip('#bin/godot', zip_files, ZIPROOT=zip_dir, ZIPSUFFIX='${PROGSUFFIX}${ZIPSUFFIX}', ZIPCOMSTR='Archving $SOURCES as $TARGET') |