diff --git a/gnu/build/file-systems.scm b/gnu/build/file-systems.scm index 5c04771e19..4ac7a7f8c6 100644 --- a/gnu/build/file-systems.scm +++ b/gnu/build/file-systems.scm @@ -233,7 +233,7 @@ (define (check-file-system device type) (define fsck (string-append "fsck." type)) - (let ((status (system* fsck "-v" "-p" device))) + (let ((status (system* fsck "-v" "-p" "-C" "0" device))) (match (status:exit-val status) (0 #t)