archive 296 B

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