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: Fernando Rodrigues <alpha@sigmasquadron.net>
This commit is contained in:
Fernando Rodrigues 2024-09-21 15:44:51 +00:00
parent 1b1e09e8d3
commit da018db144
No known key found for this signature in database
GPG Key ID: CC3AE2EA00000000

View File

@ -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