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