mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
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:
parent
1b1e09e8d3
commit
da018db144
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user