mirror of
https://github.com/StrawberryMaster/wayback-machine-downloader.git
synced 2025-12-17 09:46:05 +00:00
9 lines
315 B
Bash
9 lines
315 B
Bash
#!/bin/bash
|
|
|
|
if [ "$ENVIRONMENT" == "development" ]; then
|
|
echo "Running in development mode. Starting rerun..."
|
|
exec rerun --dir /build --ignore "websites/*" -- /build/bin/wayback_machine_downloader "$@"
|
|
else
|
|
echo "Not in development mode. Skipping rerun."
|
|
exec /build/bin/wayback_machine_downloader "$@"
|
|
fi |