1
0
mirror of https://github.com/pirate/ArchiveBox.git synced 2025-08-11 09:04:35 +02:00

remove old deprecated bin/archive entrypoint

This commit is contained in:
Nick Sweeting
2024-12-18 01:31:38 -05:00
committed by GitHub
parent 90f511c367
commit 0ad1bdaf93

View File

@@ -1,13 +0,0 @@
#!/usr/bin/env bash
# DEPRECATED: this helper exists for backwards compatibility with <v0.4 only
# Do not use this to call archivebox, instead use the archivebox binary directly.
if python3 -m django --version >/dev/null 2>&1; then
python3 -m archivebox "$*"
else
echo '[X] ArchiveBox not found, is it installed and present in your $PATH?'
echo ' pip3 install archivebox'
echo
echo 'Hint: Did you forget to activate a virtualenv?'
exit 2
fi