1
0
Fork 0
mirror of synced 2024-06-16 17:35:15 +12:00
ArchiveBox/bin/archive

12 lines
296 B
Plaintext
Raw Normal View History

#!/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