We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e5a9de commit 2179894Copy full SHA for 2179894
1 file changed
.devcontainer/setup.sh
@@ -10,9 +10,10 @@ then
10
11
mv .devcontainer ..
12
git clone "$target_repo" .
13
- rm -rf .devcontainer
14
- git clean -f -f
15
- mv ../.devcontainer .
+ # rm -rf .devcontainer
+ # git clean -f -f
+ # mv ../.devcontainer .
16
+ mv -f ../.devcontainer/devcontainer.json .devcontainer
17
18
else
19
@@ -21,7 +22,8 @@ else
21
22
fi
23
24
micromamba activate
- micromamba install python -c conda-forge -y
25
+ micromamba install -y -n base -f .devcontainer/env.yaml &&
26
+ micromamba clean --all --yes
27
28
# project dependencies installed via package.json
29
# and postinstall script
0 commit comments