mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
nixos-install: fix error message consistency
The test is for path A but the error message says path B. Fix it.
This commit is contained in:
parent
204f5a3f4c
commit
ec13407807
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue