Skip to content

Commit d296fd8

Browse files
committed
Fix logic to avoid exiting
1 parent d5f4fcd commit d296fd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/testkomodo.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ start_integration_test () {
2525
# Sometimes the chromium-browser has no matching chromedriver.
2626
# Check for HTTP 404 error
2727
download_url="https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/$chromium_version/linux64/chromedriver-linux64.zip"
28-
download_status=$((curl --head "$download_url" || true) | grep -oP 'HTTP/.+? 200 OK')
28+
download_status=$(curl --head "$download_url" | grep -oP 'HTTP/.+? 200 OK' || true)
2929

3030
driver_version=$chromium_version
3131
if [[ -z "$download_status" ]]; then

0 commit comments

Comments
 (0)