瀏覽代碼

fixes for pyinstaller scripts

Thomas Buck 3 年之前
父節點
當前提交
d98a7324f4
共有 2 個檔案被更改,包括 3 行新增3 行删除
  1. 2
    2
      build_linux.sh
  2. 1
    1
      build_win.sh

+ 2
- 2
build_linux.sh 查看文件

@@ -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 查看文件

@@ -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…
取消
儲存