1
0
Fork 0
mirror of synced 2024-05-23 13:50:01 +12:00
ArchiveBox/bin/archive
2020-08-13 23:21:15 -04:00

12 lines
296 B
Bash
Executable file

#!/bin/bash
if python3 -m django --version >/dev/null 2>&1; then
python3 -m archivebox "$*"
else
echo '[X] ArchiveBox must be installed before using:'
echo " pip install archivebox"
echo
echo "Hint: Did you forget to activate a virtuenv or set your $$PATH?"
exit 2
fi