build.sh 336 B

12345678910111213
  1. #!/bin/bash
  2. echo "Building repo_sync GUI executable..."
  3. # Install required packages
  4. pip install pyinstaller
  5. pip install -e .
  6. # Build the executable
  7. pyinstaller --onefile --windowed --name "RepoSync" --add-data "repo_sync/config.yml:repo_sync" main_gui.py
  8. echo ""
  9. echo "Build completed! The executable is in the dist folder."
  10. echo ""