Skip to content

Commit

Permalink
fix: variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
Zachary Bailey committed Oct 10, 2024
1 parent 5e2b7f3 commit c0af72f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ fi

echo -e "\nGenerating build performance data for ${SIG_IMAGE_NAME}...\n"

jq --arg sig "${SIG_IMAGE_NAME}" \
jq --arg sig_name "${SIG_IMAGE_NAME}" \
--arg arch "${ARCHITECTURE}" \
--arg captured_sig_version "${CAPTURED_SIG_VERSION}" \
--arg build_id "${BUILD_ID}" \
--arg date "$(date -u +"%Y-%m-%dT%H:%M:%SZ")" \
--arg status "${JOB_STATUS}" \
--arg branch "${GIT_BRANCH}" \
--arg commit "${GIT_VERSION}" \
'{sig_image_name: $sig, architecture: $arch, captured_sig_version: $captured_sig_version, build_id: $build_id, build_datetime: $date,
'{sig_image_name: $sig_name, architecture: $arch, captured_sig_version: $captured_sig_version, build_id: $build_id, build_datetime: $date,
build_status: $status, branch: $branch, commit: $commit, scripts: .}' \
${PERFORMANCE_DATA_FILE} > ${SIG_IMAGE_NAME}-build-performance.json

Expand Down

0 comments on commit c0af72f

Please sign in to comment.