Linux PyQt tray application to control OctoPrint instances
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build_linux.sh 327B

1234567891011121314151617
  1. #!/bin/sh
  2. rm -rf build/linux
  3. mkdir -p build/linux
  4. cp src/* build/linux/
  5. cp data/* build/linux/
  6. cd build/linux
  7. pyinstaller --noconfirm --onefile --name=OctoTray --add-data="octotray_icon.png:." main.py
  8. cd dist
  9. zip -r OctoTray_Linux.zip *
  10. cd ../../..
  11. mkdir -p build/dist
  12. cp -r build/linux/dist/OctoTray_Linux.zip build/dist