Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.

Commit f6a0049

Browse files
committed
fix more unbound variables
Signed-off-by: Eli Uriegas <[email protected]>
1 parent 01e6689 commit f6a0049

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install_requirements.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ set -eou pipefail
1010
# Install required python dependencies for developing
1111
# Dependencies are defined in .pyproject.toml
1212
PYTHON_EXECUTABLE=${PYTHON_EXECUTABLE:-python}
13-
if [[ -z $CONDA_DEFAULT_ENV ]] || [[ $CONDA_DEFAULT_ENV == "base" ]] || [[ ! -x "$(command -v python)" ]];
13+
if [[ -z ${CONDA_DEFAULT_ENV:-} ]] || [[ ${CONDA_DEFAULT_ENV:-} == "base" ]] || [[ ! -x "$(command -v python)" ]];
1414
then
1515
PYTHON_EXECUTABLE=python3
1616
fi

0 commit comments

Comments
 (0)