Skip to content

Commit 3fd27aa

Browse files
committed
fixed a build bug, when web libraries were not included on a clean project
1 parent 74b399f commit 3fd27aa

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tools/build.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ def exclude(self, path):
4242
def get_files(self):
4343
return self.files
4444

45+
init.prepare_project('')
4546

4647
build_info = BuildInfo()
4748
build_info.include('launcher.py')
@@ -61,5 +62,3 @@ def get_files(self):
6162
zip = zipfile.ZipFile(os.path.join(BUILD_FOLDER, 'script-server.zip'), 'w', zipfile.ZIP_DEFLATED)
6263
for file in build_info.get_files():
6364
zip.write(file)
64-
65-
init.prepare_project('')

0 commit comments

Comments
 (0)