Skip to content
Snippets Groups Projects
Commit 38ed281c authored by Martin Nilsson's avatar Martin Nilsson
Browse files

More informative.

Rev: tools/release_checks.pike:1.13
parent 4d1eab9b
No related branches found
No related tags found
No related merge requests found
...@@ -170,8 +170,12 @@ void assert_version() { ...@@ -170,8 +170,12 @@ void assert_version() {
if( v[0]!=__REAL_MAJOR__ || v[1]!=__REAL_MINOR__ || if( v[0]!=__REAL_MAJOR__ || v[1]!=__REAL_MINOR__ ||
v[2]!=__REAL_BUILD__ ) { v[2]!=__REAL_BUILD__ ) {
write("You must be running the Pike you want to test.\n"); write("You must be running the Pike you want to test.\n");
write("%d %d\n%d %d\n%d %d\n", v[0], __REAL_MAJOR__,
v[1], __REAL_MINOR__, v[2], __REAL_BUILD__);
exit(1); exit(1);
} }
write("\nRelease checks for "+version()+"\n\n");
} }
int test_version() { int test_version() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment