jjb: coverity: fix for curl 8.4
authorMichael Jeanson <mjeanson@efficios.com>
Tue, 7 Nov 2023 18:27:32 +0000 (13:27 -0500)
committerMichael Jeanson <mjeanson@efficios.com>
Tue, 7 Nov 2023 18:29:00 +0000 (13:29 -0500)
We upgraded curl to work around a git clone issue but this new version
doesn't support combining '--form' or '--data' with '--continue-at'.
Remove the resume support that was added when the Coverity download
server was flaky, they seem to have fixed the issue on their side.

Change-Id: I9907a1cba903a73a8221a5ce490c39d82e2d4769
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
scripts/common/coverity.sh

index 0b918bc08b21f1fe2db672802da868c374da7191..d596599aba4994ff2b0fe40f06db23125889e396 100755 (executable)
@@ -120,7 +120,13 @@ fi
 if [ ! -d "$TOOL_BASE" ]; then
   echo -e "\033[33;1mDownloading Coverity Scan Analysis Tool...\033[0m"
   set +x
-  curl --fail --remote-time --continue-at - --form project="$COVERITY_SCAN_PROJECT_NAME" --form token="$COVERITY_SCAN_TOKEN" --output "$TOOL_ARCHIVE" --time-cond "$TOOL_ARCHIVE" "$TOOL_URL"
+  curl --fail \
+       --location \
+       --remote-time \
+       --form project="$COVERITY_SCAN_PROJECT_NAME" \
+       --form token="$COVERITY_SCAN_TOKEN" \
+       --output "$TOOL_ARCHIVE" \
+       "$TOOL_URL" || rm -f "$TOOL_ARCHIVE"
   set -x
 
   # Extract Coverity Scan Analysis Tool
This page took 0.02379 seconds and 4 git commands to generate.