13 lines
228 B
Bash
Executable File
13 lines
228 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Clean previous builds
|
|
rm -rf dist build
|
|
|
|
# Install requirements
|
|
pip install -r requirements.txt
|
|
pip install pyinstaller
|
|
|
|
# Build
|
|
pyinstaller gotify-tray.spec
|
|
|
|
echo "Build complete. Executable in dist/gotify-tray/" |