Files
vibeline/post_process.sh
Gigi dc6321323e feat(post-process): add --force flag and improve item formatting
- Add --force/-f flag to override existing files\n- Clean up non-letter characters from beginning of lines\n- Pass through command line arguments in shell script
2025-04-03 11:26:00 +01:00

10 lines
209 B
Bash
Executable File

#!/bin/bash
# Activate the virtual environment
source vibenv/bin/activate
# Run the Python script with any provided arguments
python src/post_process.py "$@"
# Deactivate the virtual environment
deactivate