From fccb35c28f3b6a2d9d137bca0d004ca72241b8d9 Mon Sep 17 00:00:00 2001 From: markusthilo Date: Mon, 15 Apr 2024 11:23:04 +0200 Subject: [PATCH] make-exe.py now build bin dir --- make-exe.py | 1 + 1 file changed, 1 insertion(+) diff --git a/make-exe.py b/make-exe.py index 375a60e..1674357 100644 --- a/make-exe.py +++ b/make-exe.py @@ -36,6 +36,7 @@ def move(self, tobin=False): dir_path = Path.cwd() if tobin: dir_path = dir_path/'bin' + dir_path.mkdir() self.exe_path = self.exe_path.replace(dir_path/self.exe_path.name) rmtree('build') rmtree('dist')