
* fix: missing python-poetry-core * added migration * Flesh out migration to fix all tte issues * Turn TTE back on --------- Co-authored-by: David Heinemeier Hansson <david@hey.com>
10 lines
251 B
Bash
10 lines
251 B
Bash
echo "Ensure TTE and dependencies are installed"
|
|
|
|
if ! yay -Q python-poetry-core &>/dev/null; then
|
|
yay -S --noconfirm python-poetry-core
|
|
fi
|
|
|
|
if ! yay -Q python-terminaltexteffects &>/dev/null; then
|
|
yay -S --noconfirm python-terminaltexteffects
|
|
fi
|