Skip to content

Commit

Permalink
ci: fix unneeded redirection
Browse files Browse the repository at this point in the history
  • Loading branch information
antmak committed Jan 9, 2024
1 parent 4f592ba commit 2ca17ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ upload_to_internal:
- DIST_FILE_LIST="${DIST_FILE_LIST} ${RELEASE_SRC_FILE}"
- |
for n in $DIST_FILE_LIST; do
sz=$(stat -c%s "${n}") >> ${RELEASE_CHECKSUM_FILE};
sz=$(stat -c%s "${n}");
printf "# %s: %s bytes\n" "${n}" "${sz}" >> ${RELEASE_CHECKSUM_FILE};
sha256sum -b "${n}" >> ${RELEASE_CHECKSUM_FILE};
done
Expand Down

0 comments on commit 2ca17ef

Please sign in to comment.