Skip to content

Commit

Permalink
Merge pull request #76 from atsign-foundation/cpswan-remove-poetry_lock
Browse files Browse the repository at this point in the history
fix: Check for presence of file rather than absence
  • Loading branch information
realvarx authored Oct 24, 2023
2 parents 543aee1 + 27c3c45 commit 0671872
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion update_requirements.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# update the requirements.txt, which is what we actually use to pull
# in our Python dependencies. So we need to run this to generate a
# new requirements.txt from the updated files.
if ! [ -f poetry.lock ]; then
if [ -f poetry.lock ]; then
rm poetry.lock
fi
poetry export --format requirements.txt --output requirements.txt
Expand Down

0 comments on commit 0671872

Please sign in to comment.