From ec13407807a0a5f5d490e20cc8a6764c535b979f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Mon, 22 Apr 2013 22:06:27 +0200 Subject: [PATCH] nixos-install: fix error message consistency The test is for path A but the error message says path B. Fix it. --- modules/installer/tools/nixos-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/installer/tools/nixos-install.sh b/modules/installer/tools/nixos-install.sh index 2b7d73c43a5b..5ff28dcfec82 100644 --- a/modules/installer/tools/nixos-install.sh +++ b/modules/installer/tools/nixos-install.sh @@ -30,7 +30,7 @@ if ! grep -F -q " $mountPoint " /proc/mounts; then fi if ! test -e "$mountPoint/$NIXOS_CONFIG"; then - echo "configuration file $NIXOS_CONFIG doesn't exist" + echo "configuration file $mountPoint/$NIXOS_CONFIG doesn't exist" exit 1 fi