2022-10-04 10:18:56 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-10-04 12:36:14 +02:00
|
|
|
if [ "$0" == "bash" ]; then
|
|
|
|
export SD_BASE_DIR=`pwd`
|
|
|
|
export MAMBA_ROOT_PREFIX="$SD_BASE_DIR/env/mamba"
|
|
|
|
export INSTALL_ENV_DIR="$SD_BASE_DIR/env/installer_env"
|
2022-10-04 10:18:56 +02:00
|
|
|
|
2022-10-04 12:36:14 +02:00
|
|
|
eval "$($MAMBA_ROOT_PREFIX/micromamba shell hook -s posix)"
|
2022-10-04 10:18:56 +02:00
|
|
|
|
2022-10-04 12:36:14 +02:00
|
|
|
micromamba activate "$INSTALL_ENV_DIR"
|
|
|
|
else
|
|
|
|
bash --init-file open_dev_console.sh
|
|
|
|
fi
|