File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 12
12
cd ../../;
13
13
curl -L https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -xvj bin/micromamba;
14
14
export PATH="$PWD/bin:$PATH";
15
+ export MAMBA_EXE="$PWD/bin/micromamba";
15
16
export MAMBA_ROOT_PREFIX="/home/docs/checkouts/readthedocs.org/user_builds/xeus-cpp/conda/";
16
- eval $(micromamba shell hook --shell bash --root-prefix "$MAMBA_ROOT_PREFIX" 2> /dev/null)";
17
+ __mamba_setup="$("$MAMBA_EXE" shell hook --shell bash --root-prefix "$MAMBA_ROOT_PREFIX" 2> /dev/null)";
18
+ eval "$__mamba_setup";
19
+ alias micromamba="$MAMBA_EXE";
17
20
micromamba create -f environment-wasm-build.yml -y;
18
21
micromamba activate xeus-cpp-wasm-build;
19
22
micromamba create -f environment-wasm-host.yml --platform=emscripten-wasm32;
20
- mkdir build;
23
+ mkdir -p build;
21
24
cd build;
22
25
export BUILD_PREFIX=$MAMBA_ROOT_PREFIX/xeus-cpp-wasm-build;
23
26
export PREFIX=$MAMBA_ROOT_PREFIX/xeus-cpp-wasm-host;
You can’t perform that action at this time.
0 commit comments