Skip to content

Commit

Permalink
Update for github ci
Browse files Browse the repository at this point in the history
  • Loading branch information
dalmijn committed Sep 2, 2024
1 parent dac6675 commit cba1e7c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .build/linux64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,15 @@ echo "INFO: Locating $bin_var"
paths=$(which -a $bin_var)
executable=$(echo "$paths" | grep "^$HOME")

if [ -z "$executable" ]; then
if [ -z "$executable" ] && [ $bin_var != "conda" ]; then
echo "Cannot find binary for: $bin_var"
exit 1
elif [ -z "$executable" ]; then
executable="/home/runner/miniconda3/condabin/conda"
if [ ! -e $executable]; then
echo "Cannot find binary for: $bin_var"
exit 1
fi
fi

# if [ -z "$executable" ]
Expand Down

0 comments on commit cba1e7c

Please sign in to comment.