line-stickers/fetch.sh
2020-07-08 16:10:14 +10:00

8 lines
147 B
Bash
Executable File

#!/usr/bin/env sh
if nix-shell --version 2>&1 >/dev/null ; then
nix-shell --command "python ./fetch.py $@"
else
python ./fetch.py "$@"
fi