diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-04-10T14·40+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-04-10T14·40+0200 |
commit | 209927bb2785920eff455adb97ba513080c6e8c0 (patch) | |
tree | 52de9b8addbb0c7f8e47a40894cd3bdf0b5021ca | |
parent | 1fb30e6d50c29adcc3a3d73381cd90f5f5989c31 (diff) |
Unconfuse Rob
-rw-r--r-- | perl/lib/Nix/Manifest.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl/lib/Nix/Manifest.pm b/perl/lib/Nix/Manifest.pm index 909604a44938..532a900978f2 100644 --- a/perl/lib/Nix/Manifest.pm +++ b/perl/lib/Nix/Manifest.pm @@ -343,10 +343,10 @@ EOF my $version = readManifest_($manifest, \&addNARToDB, \&addPatchToDB); if ($version < 3) { - die "you have an old-style or corrupt manifest `$manifestLink'; please delete it"; + die "you have an old-style or corrupt manifest `$manifestLink'; please delete it\n"; } if ($version >= 10) { - die "manifest `$manifestLink' is too new; please delete it or upgrade Nix"; + die "manifest `$manifestLink' is too new; please delete it or upgrade Nix\n"; } } |