7 lines
198 B
Bash
7 lines
198 B
Bash
|
echo "Fixing poetry..."
|
||
|
pip install --upgrade poetry > /dev/null
|
||
|
echo "Updating/Installing dependencies..."
|
||
|
poetry update > /dev/null
|
||
|
echo "Logging completion..."
|
||
|
touch /tmp/updated.txt
|
||
|
echo "Done!"
|