mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
activation: Don't use double quotes in boot loader warning message, it messes up perl system call
This commit is contained in:
parent
28cf26d674
commit
e32e501435
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ let
|
|||
config.boot.kernelParams ++ config.boot.extraKernelParams;
|
||||
installBootLoader =
|
||||
config.system.build.installBootLoader
|
||||
or "echo \"Warning: don't know how to make this configuration bootable; please enable a boot loader.\" 1>&2; true";
|
||||
or "echo 'Warning: do not know how to make this configuration bootable; please enable a boot loader.' 1>&2; true";
|
||||
activationScript = config.system.activationScripts.script;
|
||||
nixosVersion = config.system.nixosVersion;
|
||||
|
||||
|
|
Loading…
Reference in a new issue