Skip to content

Commit 9958f12

Browse files
committed
Updating make.py
1 parent 774c0df commit 9958f12

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

make.py

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ def run_no_installer():
209209
raise ("Not functional yet")
210210
filename = obtain_exe_filename()
211211

212-
zipdir(os.path.join('odmtools'), filename)
212+
zipdir(BASE_DIR, filename)
213213
move_to_dist(filename)
214214

215215

@@ -230,13 +230,20 @@ def main():
230230
if run_pyinstaller(console=True):
231231
run_inno()
232232

233+
print "Create No Installer "
234+
235+
## Create Shortcut
236+
## Create File
237+
## Zip Executable
238+
239+
233240
elif sys.platform =='darwin':
234241
if(mac_pyinstaller()):
235242
run_iceberg()
236243

237-
elif sys.platform == 'linux2':
238-
## Testing, not officially supported
239-
run_no_installer()
244+
# elif sys.platform == 'linux2':
245+
# ## Testing, not officially supported
246+
# run_no_installer()
240247

241248

242249
if __name__ == '__main__':

0 commit comments

Comments
 (0)