From: Daan De Meyer Date: Sun, 24 Nov 2024 17:45:11 +0000 (+0100) Subject: Fix typo X-Git-Tag: v25~144 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=10fdbdf3d9db6c3d5e452f1f404d1c6438425c0b;p=thirdparty%2Fmkosi.git Fix typo --- diff --git a/mkosi/sandbox.py b/mkosi/sandbox.py index 249f3332c..20fca27aa 100755 --- a/mkosi/sandbox.py +++ b/mkosi/sandbox.py @@ -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")