Skip to content

Commit

Permalink
fixup! own
Browse files Browse the repository at this point in the history
  • Loading branch information
findepi committed Jul 17, 2024
1 parent 9324f9f commit 53f3aa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/repo_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
if [ -z "${path}" ]; then
path="$(git cat-file -t "${id}") ${id}"
fi
if [ "${size}" > "${MAX_FILE_SIZE_BYTES}" ]; then
if [ "${size}" -gt "${MAX_FILE_SIZE_BYTES}" ]; then
exit_code=1
echo "Object ${id} [${path}] has size ${size}, exceeding ${MAX_FILE_SIZE_BYTES} limit." >&2
echo "::error::File ${path} has size ${size}, exceeding ${MAX_FILE_SIZE_BYTES} limit."
Expand Down

0 comments on commit 53f3aa7

Please sign in to comment.