Unverified Commit d516870f authored by Victor Engmark's avatar Victor Engmark
Browse files

nixos/modules: Split recursive mkdir with permissions

Detected by ShellCheck as violating
<https://github.com/koalaman/shellcheck/wiki/SC2174>.
parent 4e977402
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -214,7 +214,8 @@ in
      ''
        # Create the required /bin/sh symlink; otherwise lots of things
        # (notably the system() function) won't work.
        mkdir -m 0755 -p /bin
        mkdir -p /bin
        chmod 0755 /bin
        ln -sfn "${cfg.binsh}" /bin/.sh.tmp
        mv /bin/.sh.tmp /bin/sh # atomically replace /bin/sh
      '';