- Timestamp:
- Jun 28, 2006, 11:38:22 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bin/svnstat.cc
r104 r109 63 63 if (option->force()){ 64 64 std::string root_path(option->targetdir()+'/'+file_name(option->root())); 65 rmdirhier(root_path); 65 struct stat buf; 66 if (!stat(root_path.c_str(),&buf)) 67 rmdirhier(root_path); 66 68 } 67 69 else { … … 76 78 } 77 79 78 exit(-1);79 80 if (!option->revisions()) { 80 81 if (option->verbose())
Note: See TracChangeset
for help on using the changeset viewer.