summary refs log tree commit diff
path: root/pkgs/build-support/docker/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/build-support/docker/default.nix')
-rw-r--r--pkgs/build-support/docker/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/build-support/docker/default.nix b/pkgs/build-support/docker/default.nix
index a6304d9c064..3fcae13e20d 100644
--- a/pkgs/build-support/docker/default.nix
+++ b/pkgs/build-support/docker/default.nix
@@ -625,11 +625,11 @@ rec {
 
         echo "Cooking the image..."
         # tar exits with an exit code of 1 if files changed while it was
-        # reading them. it considers a change in the number of hard links
+        # reading them. It considers a change in the number of hard links
         # to be a "change", which can cause this to fail if images are being
-        # built concurrently and auto-optimise-store is turned on. since
-        # know the contents of these files will not change, we can reasonably
-        # ignore this exit code
+        # built concurrently and the auto-optimise-store nix option is turned on.
+        # Since the contents of these files will not change, we can reasonably
+        # ignore this exit code.
         set +e
         tar -C image --dereference --hard-dereference --sort=name \
           --mtime="@$SOURCE_DATE_EPOCH" --owner=0 --group=0  \