From d0c543d740fad42fe2c035b43c9d41127e073c78 Mon Sep 17 00:00:00 2001 From: Torsten Curdt Date: Sun, 27 Apr 2025 23:55:01 +0200 Subject: [PATCH] [fix] added missing single quote in script --- cli.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli.nix b/cli.nix index 6a45937..1416aff 100644 --- a/cli.nix +++ b/cli.nix @@ -108,7 +108,7 @@ let else if hasDiskoModuleFlake then (builtins.getFlake flake).nixosConfigurations.${flakeAttr}.config.system.build.${diskoAttr} or (pkgs.writeShellScriptBin "disko-compat-error" '' - echo 'Error: Attribute `nixosConfigurations.${flakeAttr}.config.system.build.${diskoAttr}` >&2 + echo 'Error: Attribute `nixosConfigurations.${flakeAttr}.config.system.build.${diskoAttr}`' >&2 echo ' not found in flake `${flake}`!' >&2 echo ' This is probably caused by the locked version of disko in the flake' >&2 echo ' being different from the version of disko you executed.' >&2