16 lines
283 B
Bash
16 lines
283 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
WORKING_DIR="${1:-.}"
|
||
|
|
||
|
cd "$WORKING_DIR" || exit
|
||
|
|
||
|
if [ ! -d "./venv/" ]; then
|
||
|
echo "This is script only works with a python virtual environment setup at $(pwd)/venv"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
source ./venv/bin/activate
|
||
|
./venv/bin/python freshrss2linkding.py
|