jjb: coverity: fix: cache the tool installer
authorMichael Jeanson <mjeanson@efficios.com>
Wed, 15 Mar 2023 19:46:11 +0000 (15:46 -0400)
committerMichael Jeanson <mjeanson@efficios.com>
Fri, 17 Mar 2023 18:51:26 +0000 (14:51 -0400)
Now that we cache the installer, always try the curl download.

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

index 1b96b905bcaaf6edc0c33d4103426cbc6756b0df..a757a174de880a968c715074a84dfc3a7bc83576 100755 (executable)
@@ -129,12 +129,10 @@ fi
 
 # Download Coverity Scan Analysis Tool
 if [ ! -d "$TOOL_BASE" ]; then
-  if [ ! -e "$TOOL_ARCHIVE" ]; 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"
-    set -x
-  fi
+  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"
+  set -x
 
   # Extract Coverity Scan Analysis Tool
   echo -e "\033[33;1mExtracting Coverity Scan Analysis Tool...\033[0m"
This page took 0.022857 seconds and 4 git commands to generate.