diff options
| author | Debulois <quentin@debulois.fr> | 2022-05-01 11:44:09 +0200 |
|---|---|---|
| committer | Debulois <quentin@debulois.fr> | 2022-05-01 11:44:09 +0200 |
| commit | 1eaf21fd423e5dedf1ed4361b0e9b6cbbcfc9fa0 (patch) | |
| tree | 6557511b23ec5a067db75483ad1e42d836010851 /src/setup.py | |
| parent | afd6fb901b7e8f99cdb1bb0d2134cec2d6cebc3b (diff) | |
Ajout gestion des missions coté client & pro
Diffstat (limited to 'src/setup.py')
| -rw-r--r-- | src/setup.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/setup.py b/src/setup.py index 56e2478..db06109 100644 --- a/src/setup.py +++ b/src/setup.py @@ -1,4 +1,7 @@ from os import system -system("pyinstaller -w -i ./gui/ressources/icon.ico main.py") + +res = system("pyinstaller -w -i .\\gui\\ressources\\icon.ico main.py") +if res == 0: + system(".\\dist\\main\\main.exe") |
