10 lines
139 B
Bash
10 lines
139 B
Bash
#!/bin/bash
|
|
|
|
|
|
|
|
# Pull the latest changes
|
|
git fetch --all
|
|
git reset --hard origin/main
|
|
|
|
# Run your Python script
|
|
python post_rss_to_ghost.py |