We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f47c40 commit 7b77d5cCopy full SHA for 7b77d5c
make.py
@@ -688,6 +688,12 @@ def _create_launchers(self):
688
args=r"Noshell.vbs winvscode.bat",
689
)
690
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
+
697
self._print_done()
698
699
def _create_batch_scripts_initial(self):
0 commit comments