Skip to content

Commit 8e0f60a

Browse files
committed
No longer bailing if python not installed correctly
1 parent 7ccaf6d commit 8e0f60a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/scripts/utils.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1620,7 +1620,9 @@ function setupPython () {
16201620

16211621
echo $pyVersion | grep "${pythonVersion}" >/dev/null
16221622
if [ $? -ne 0 ]; then
1623-
errorNoPython
1623+
writeLine 'Not found' $color_error
1624+
# errorNoPython
1625+
return 1
16241626
fi
16251627
writeLine 'All good' $color_success
16261628

0 commit comments

Comments
 (0)