Changeset 709
- Timestamp:
- Nov 27, 2008, 12:37:22 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bin/Parameter.cc
r708 r709 65 65 66 66 if (!config_file_->present()) 67 config_file_->value( root_->value()+"/.svndigest/config");67 config_file_->value(concatenate_path(root_->value(),".svndigest/config")); 68 68 69 69 // analyse arguments -
trunk/lib/utility.cc
r705 r709 66 66 std::string concatenate_path(std::string dir, std::string base) 67 67 { 68 if (dir.empty() )68 if (dir.empty() || dir==".") 69 69 return base; 70 70 if (dir[dir.size()-1]!='/')
Note: See TracChangeset
for help on using the changeset viewer.