From e49e4662b15dbc0e8dc7de285f8582f74a434a35 Mon Sep 17 00:00:00 2001 From: Max Neunhoeffer Date: Thu, 26 Mar 2015 14:56:28 -0700 Subject: [PATCH] Fix a warning message. --- arangosh/V8Client/arangodump.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arangosh/V8Client/arangodump.cpp b/arangosh/V8Client/arangodump.cpp index d0d72821ef..8e3721d50f 100644 --- a/arangosh/V8Client/arangodump.cpp +++ b/arangosh/V8Client/arangodump.cpp @@ -1298,7 +1298,7 @@ int main (int argc, char* argv[]) { } if (isDirectory && ! Overwrite) { - cerr << "output directory '" << OutputDirectory << "' already exists. use --overwrite to overwrite data in in it" << endl; + cerr << "output directory '" << OutputDirectory << "' already exists. use \"--overwrite true\" to overwrite data in it" << endl; TRI_EXIT_FUNCTION(EXIT_FAILURE, nullptr); }