mirror of
https://github.com/overcuriousity/trace.git
synced 2025-12-20 13:02:21 +00:00
- Move all project files from `trace/` subdirectory to the repository root - Rename directory structure from `fnote` to `trace` - Update package references and imports (fnote -> trace) - Update application branding and storage paths (~/.trace) - Update build script and documentation - Ensure __pycache__ is ignored
17 lines
385 B
Bash
Executable File
17 lines
385 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Clean previous builds
|
|
rm -rf build dist *.spec
|
|
|
|
# Build the single-file executable
|
|
# --paths .: Add current directory to search path so 'trace' package is found
|
|
pyinstaller --onefile \
|
|
--name trace \
|
|
--clean \
|
|
--paths . \
|
|
--hidden-import curses \
|
|
main.py
|
|
|
|
echo "Build complete. Binary is at dist/trace"
|