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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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"
      fi
      maybe_install_uv
      uv sync --frozen ${PYTHON_EXTRA_DEPS:+--extras "$PYTHON_EXTRA_DEPS"}
      uv sync --frozen ${PYTHON_EXTRA_DEPS:+--extra "$PYTHON_EXTRA_DEPS"}
      ;;
    esac
  }