8 lines
No EOL
147 B
Bash
Executable file
8 lines
No EOL
147 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
FILE=./requirements.txt
|
|
if [ -f "$FILE" ]; then
|
|
/usr/bin/rm "$FILE" && pip freeze >"$FILE"
|
|
else
|
|
pip freeze >"$FILE"
|
|
fi |