Skip to content

Commit

Permalink
MAINT: Fix codespaces setup.sh script
Browse files Browse the repository at this point in the history
A change in how codespaces is configured upstream causes the installation script for micromamba to wait for input unless stdin is explicitly made empty, which causes codespaces creation to fail.

[skip ci]
  • Loading branch information
melissawm committed Aug 9, 2023
1 parent adf9794 commit c43d5a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .devcontainer/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

curl micro.mamba.pm/install.sh | bash
"${SHELL}" <(curl -Ls micro.mamba.pm/install.sh) < /dev/null

conda init --all
micromamba shell init -s bash
Expand Down

0 comments on commit c43d5a9

Please sign in to comment.