]> git.ipfire.org Git - thirdparty/mkosi.git/commitdiff
Fix typo
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Sun, 24 Nov 2024 17:45:11 +0000 (18:45 +0100)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Sun, 24 Nov 2024 17:46:04 +0000 (18:46 +0100)
mkosi/sandbox.py

index 249f3332c3aa6af8e8ba08da708ed0f8961b018a..20fca27aae9a6fd8a21e0439836c5ae8171db6a0 100755 (executable)
@@ -500,7 +500,7 @@ class DevOperation(FSOperation):
         with umask(~0o755):
             os.makedirs(dst, exist_ok=True)
 
-        # Note that the mode is curcial here. If the default mode (1777) is used, trying to access
+        # Note that the mode is crucial here. If the default mode (1777) is used, trying to access
         # /dev/null fails with EACCESS for unknown reasons.
         mount("tmpfs", dst, "tmpfs", 0, "mode=0755")