mirror of
https://github.com/Balshgit/python-poetry.git
synced 2025-09-10 16:30:41 +03:00
11 lines
217 B
Bash
11 lines
217 B
Bash
#!/bin/bash
|
|
|
|
POETRYLOCK=./poetry/poetry.lock
|
|
REQUIREMENTS=./poetry/requirements.txt
|
|
|
|
if [ -f "$POETRYLOCK" ] && [ -f "$REQUIREMENTS" ]; then
|
|
echo "poetry.lock and requirements.txt created successfully"
|
|
exit 0
|
|
fi
|
|
|