From 5bb24ff28600a1481ed20f6ced6747da8c5317cb Mon Sep 17 00:00:00 2001 From: curt <curt> Date: Mon, 11 Nov 2002 15:19:34 +0000 Subject: [PATCH] Julian Foad: - Put a space between arguments and redirection operator: looks nicer and may be necessary in some circumstances. - Add missing option "--min-angle" to help text. --- src/BuildTiles/Parallel/client.cxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/BuildTiles/Parallel/client.cxx b/src/BuildTiles/Parallel/client.cxx index 812ab24d..ed7cbece 100644 --- a/src/BuildTiles/Parallel/client.cxx +++ b/src/BuildTiles/Parallel/client.cxx @@ -200,7 +200,7 @@ bool construct_tile( const SGBucket& b, for (int i = 0; i < (int)load_dirs.size(); i++) { command = command + " " + load_dirs[i]; } - command = command + "> " + result_file + " 2>&1"; + command = command + " > " + result_file + " 2>&1"; cout << command << endl; system( command.c_str() ); @@ -253,7 +253,8 @@ usage (const string name) cout << " --host=<address>" << endl; cout << " --port=<number>" << endl; cout << " --rude" << endl; - cout << " --cover=<landcover-raster> ]" << endl; + cout << " --cover=<landcover-raster>" << endl; + cout << " --min-angle=<degrees> ]" << endl; cout << "<load directory...>" << endl; exit(-1); }