Skip to content
Snippets Groups Projects
Unverified Commit 354af5ad authored by Sylvain Desbureaux's avatar Sylvain Desbureaux
Browse files

fix: use right options for uv with extras deps


`--extras` is not the right command for `uv`. It's `--extra` instead.

Signed-off-by: default avatarSylvain Desbureaux <sylvain.desbureaux@orange.com>
parent 078f9541
No related branches found
No related tags found
No related merge requests found
...@@ -704,7 +704,7 @@ variables: ...@@ -704,7 +704,7 @@ variables:
log_warn "Using uv but \\e[33;1muv.lock\\e[0m file not found: you shall commit it with your project files" log_warn "Using uv but \\e[33;1muv.lock\\e[0m file not found: you shall commit it with your project files"
fi fi
maybe_install_uv maybe_install_uv
uv sync --frozen ${PYTHON_EXTRA_DEPS:+--extras "$PYTHON_EXTRA_DEPS"} uv sync --frozen ${PYTHON_EXTRA_DEPS:+--extra "$PYTHON_EXTRA_DEPS"}
;; ;;
esac esac
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment