Skip to content

Commit

Permalink
CI: Fix the script to install dependencies on Windows (#8594)
Browse files Browse the repository at this point in the history
  • Loading branch information
seisman authored Oct 6, 2024
1 parent 654a3bc commit a268814
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/install-dependencies-windows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ if [ "$PACKAGE" = "true" ]; then
fi

# install more packages using conda
$CONDA\\condabin\\conda.bat update -n base -c conda-forge conda --solver libmamba
$CONDA\\condabin\\conda.bat install ${conda_packages} -c conda-forge --solver libmamba
$CONDA\\Scripts\\conda.exe update -n base -c conda-forge conda --solver libmamba
$CONDA\\Scripts\\conda.exe install ${conda_packages} -c conda-forge --solver libmamba
echo "$CONDA\\Library\\bin" >> $GITHUB_PATH
echo "$CONDA\\Scripts" >> $GITHUB_PATH

Expand Down

0 comments on commit a268814

Please sign in to comment.