Unverified Commit da018db1 authored by Fernando Rodrigues's avatar Fernando Rodrigues
Browse files

nixos/xen: fix spurious ShellCheck warning



It thinks we want to expand the `*` regex expressions inside the `sed`
commands. We do not.

Signed-off-by: default avatarFernando Rodrigues <alpha@sigmasquadron.net>
parent 1b1e09e8
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -32,6 +32,10 @@ let
    runtimeEnv = {
      efiMountPoint = config.boot.loader.efi.efiSysMountPoint;
    };

    # We disable SC2016 because we don't want to expand the regexes in the sed commands.
    excludeShellChecks = [ "SC2016" ];

    text = builtins.readFile ./xen-boot-builder.sh;
  };
in