Remove the --no-update parameter of poetry lock in the poup command

Recent versions of poetry don't provide this option.
This commit is contained in:
2025-10-13 13:10:56 +02:00
parent 43b4192357
commit 8bddea4b58
2 changed files with 3 additions and 1 deletions

View File

@@ -1 +1,3 @@
alias ek "emacsclient -t -e '(save-buffers-kill-emacs)'"
alias em "emacs &; disown"
alias vim nvim

View File

@@ -26,7 +26,7 @@ function poup
git checkout --ours $lockfile
if test $project_type = poetry
poetry lock --no-update
poetry lock
else if test $project_type = uv
uv lock
end