Skip to content

Commit 7b77d5c

Browse files
committed
override old NSIS launchers per new launchers method
1 parent 8f47c40 commit 7b77d5c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

make.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -688,6 +688,12 @@ def _create_launchers(self):
688688
args=r"Noshell.vbs winvscode.bat",
689689
)
690690

691+
# 2025-01-04: copy launchers premade per the Datalab-Python way
692+
portable_dir = str(Path(__file__).resolve().parent / "portable" / "launchers_final")
693+
for path in Path(portable_dir).rglob('*.exe'):
694+
shutil.copy2(path, Path(self.winpydir) )
695+
print("new way !!!!!!!!!!!!!!!!!! ", path , " -> ",Path(self.winpydir))
696+
691697
self._print_done()
692698

693699
def _create_batch_scripts_initial(self):

0 commit comments

Comments
 (0)