Skip to content
Snippets Groups Projects
Commit 81ef0273 authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

stricter checking on rm -rf of install directory

parent 0774cc63
Branches
No related tags found
No related merge requests found
.sconsign.dblite .sconsign.dblite
pedi.exe pedi.exe
pedi.o pedi.o
*.swp
...@@ -369,6 +369,8 @@ void find_manifest_file(string &file) ...@@ -369,6 +369,8 @@ void find_manifest_file(string &file)
auto line_no=0; auto line_no=0;
for( auto line=string() ; getline(input,line); ) for( auto line=string() ; getline(input,line); )
{ {
if(my_options.verbose)
cout << "Processing line: " << line << endl;
auto tokens=split(trimmed(line).c_str(),' '); auto tokens=split(trimmed(line).c_str(),' ');
if(tokens.size() == 0) if(tokens.size() == 0)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment