9 lines
223 B
Bash
Executable File
9 lines
223 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
dual_mode_arg=""
|
|
|
|
if [ ! -z "${USE_DUAL_BRANCH}" ]; then
|
|
dual_mode_arg="@dual_mode"
|
|
fi
|
|
|
|
pip -q install --no-cache-dir --force-reinstall "git+https://github.com/thedragonsinn/ub-core${dual_mode_arg}" |