P
Size: a a a
P
P
P
4
yp
yp
yp
yp
Y
4
Y
NK
WR
done
.4
done
.if [[ "$some_variable" == "good input" ]]; then[/bash]
echo "You got the right input."
elif [[ "$some_variable" == "ok input" ]]; then
echo "Close enough"
else
echo "No way Jose."
fi
4
done
.WR
if [[ "$some_variable" == "good input" ]]; then[/bash]
echo "You got the right input."
elif [[ "$some_variable" == "ok input" ]]; then
echo "Close enough"
else
echo "No way Jose."
fi
4
WR
if [[ "$some_variable" == "good input" ]]; then[/bash]
echo "You got the right input."
elif [[ "$some_variable" == "ok input" ]]; then
echo "Close enough"
else
echo "No way Jose."
fi
do
build_board "$version" "$board" "$@"
rc=$?
if [[ $rc -ne 0 ]]; then
notify-send "$board build failed" -u critical
date
exit 1
fi
done