Commit b9d5c690 authored by Guilhem Bonnefille's avatar Guilhem Bonnefille
Browse files

qa: fix shellcheck exception syntax

parent beb4039c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -298,7 +298,8 @@ stages:
    for file in $PACKAGES_FILES_PATTERN
    do
      log_info "Publishing \\e[33;1m${file}\\e[0m"
      # shellcheck disable=SC2016 as the single quotes are inside double quotes, so evaluation occurs, only once.
      # The single quotes are inside double quotes, so evaluation occurs, only once.
      # shellcheck disable=SC2016
      curl -sSf --header "JOB-TOKEN: $CI_JOB_TOKEN" --upload-file "$file" "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/${CI_PROJECT_NAME}/${CI_COMMIT_TAG}/$(basename '$file')"
    done
  }