8 lines
147 B
Bash
Executable File
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
|