make run return and that is what the binary exits with

This commit is contained in:
Eliot Horowitz
2009-01-29 11:56:44 -05:00
parent c55e976c0d
commit d02aa49e35
4 changed files with 6 additions and 7 deletions

View File

@@ -76,7 +76,7 @@ public:
}
void run(){
int run(){
path root( getParam( "out" , "dump" ) );
string db = _db;
@@ -103,7 +103,7 @@ public:
else {
go( db , root / db );
}
return 0;
}
};