Skip to content
Snippets Groups Projects
Commit 2350bf42 authored by Saad Jbabdi's avatar Saad Jbabdi
Browse files

clarified error message

parent 985780b5
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,11 @@ int main ( int argc, char **argv ){
}
else if(opts.network.value()){ nmasks(); }
else if(opts.meshfile.value()!=""){meshmask();}
else {cout << "exit without doing anything"<<endl;return 0;};
else {
cout << "No seed mask detected! exit without doing anything"<<endl;
cout << "If you are seeding from a list of coordinates, use --mode=simple"<<endl;
return 0;
};
//else if(fopen(tmpin.c_str(),"r")!=NULL ){ track();}
......
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