Skip to content

Commit

Permalink
fix bash if condition
Browse files Browse the repository at this point in the history
  • Loading branch information
xmnlab committed Jun 20, 2024
1 parent 1f4d112 commit 0e9fdfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/smoke/base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ PROJECT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && cd ../

CONDA_PATH=$(ensureconda --conda-exe --no-install)

if test -f "$CONDA_PATH"; then
if [[ ! -f "$CONDA_PATH" ]]; then
echo "[EE] 'conda' not found."
exit 1
fi
Expand Down

0 comments on commit 0e9fdfd

Please sign in to comment.