Merge "Make get-file-size compatible with toybox stat"

This commit is contained in:
Treehugger Robot 2019-01-12 22:28:18 +00:00 committed by Gerrit Code Review
commit 04d3c4f655
1 changed files with 1 additions and 1 deletions

View File

@ -26,5 +26,5 @@ endef
# $(1): The file to check
define get-file-size
stat --format "%s" "$(1)" | tr -d '\n'
stat -c "%s" "$(1)" | tr -d '\n'
endef