mirror of
https://github.com/aljazceru/vibeline.git
synced 2026-01-13 11:34:37 +01:00
- 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
10 lines
209 B
Bash
Executable File
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 |