Skip to content

Commit 62b975d

Browse files
committed
MAINT: Fix codespaces setup.sh script
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.
1 parent adf9794 commit 62b975d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.devcontainer/setup.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e
44

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

77
conda init --all
88
micromamba shell init -s bash

0 commit comments

Comments
 (0)