Changeset 92
- Timestamp:
- Mar 24, 2006, 12:26:15 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bin/svnstat.cc
r91 r92 30 30 #include "SVN.h" 31 31 32 #include <iostream> 32 33 #include <stdexcept> 33 34 #include <string> 34 35 #include <sys/stat.h> 35 36 #include <unistd.h> 36 37 #include <iostream>38 37 39 38 using namespace std; … … 57 56 } 58 57 catch (SVNException e) { 59 std::cerr << "\nsv tstat: " << e.what() << "\nsvnstat: " << option.root()58 std::cerr << "\nsvnstat: " << e.what() << "\nsvnstat: " << option.root() 60 59 << " is not under subversion control\n" << std::endl; 61 60 exit(-1); … … 63 62 64 63 if (createdir(option.targetdir(),option.force())) { 65 std::cerr << "\n Failed to create target directory '" << option.targetdir()66 << "'.\n" << std::endl;64 std::cerr << "\nsvnstat: Failed to create target directory '" 65 << option.targetdir() << "'.\n" << std::endl; 67 66 exit(-1); 68 67 }
Note: See TracChangeset
for help on using the changeset viewer.