Print out the fact that expand runs sync
1 files changed, 6 insertions(+), 1 deletions(-) M expand
M expand => expand +6 -1
@@ 9,7 9,12 @@ TMPFILE="/tmp/expand.$$" cleanup() { rm -f "$TMPFILE" - sync + printf 'Syncing disks' + if sync; then + printf '\n' + else + printf ': FAIL\n' + fi exit "$1" }