Browse Source

fixes for pyinstaller scripts

Thomas Buck 2 years ago
parent
commit
d98a7324f4
2 changed files with 3 additions and 3 deletions
  1. 2
    2
      build_linux.sh
  2. 1
    1
      build_win.sh

+ 2
- 2
build_linux.sh View File

@@ -12,5 +12,5 @@ pyinstaller --noconfirm --onefile --name=OctoTray --windowed --add-data="octotra
12 12
 zip -r OctoTray_Linux.zip dist/*
13 13
 
14 14
 cd ../..
15
-mkdir -p build/dist/linux
16
-cp -r build/linux/OctoTray_Linux.zip build/dist/linux/
15
+mkdir -p build/dist
16
+cp -r build/linux/OctoTray_Linux.zip build/dist

+ 1
- 1
build_win.sh View File

@@ -8,7 +8,7 @@ cp data/* build/win/
8 8
 cp dist/setup_win.py build/win/
9 9
 
10 10
 cd build/win
11
-pyinstaller --noconfirm --onefile --name=OctoTray --windowed --add-data="octotray_icon.png:." octotray.py
11
+pyinstaller --noconfirm --onefile --name=OctoTray --windowed --add-data="octotray_icon.png;." octotray.py
12 12
 
13 13
 cd ../..
14 14
 mkdir -p build/dist/win

Loading…
Cancel
Save