summaryrefslogtreecommitdiff
path: root/t/porting/manifest.t
diff options
context:
space:
mode:
Diffstat (limited to 't/porting/manifest.t')
-rw-r--r--t/porting/manifest.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/porting/manifest.t b/t/porting/manifest.t
index 666c2d9204..f8910c3e49 100644
--- a/t/porting/manifest.t
+++ b/t/porting/manifest.t
@@ -60,11 +60,11 @@ while (<$m>) {
next;
} elsif ($separator !~ tr/ //c) {
# It's all spaces
- fail("Spaces in entry for $file in MANIFEST at line $.");
+ fail("Spaces in entry for $file in MANIFEST at line $. (run `make manisort` to fix)");
} elsif ($separator =~ tr/\t//) {
- fail("Mixed tabs and spaces in entry for $file in MANIFEST at line $.");
+ fail("Mixed tabs and spaces in entry for $file in MANIFEST at line $. (run `make manisort` to fix)");
} else {
- fail("Odd whitespace in entry for $file in MANIFEST at line $.");
+ fail("Odd whitespace in entry for $file in MANIFEST at line $. (run `make manisort` to fix)");
}
}