Changeset 193 for trunk/dasscm
- Timestamp:
- Nov 17, 2004, 10:20:26 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dasscm/dasscm
r191 r193 174 174 } 175 175 176 177 sub blame(@) 178 { 179 check_parameter(@_,1); 180 check_env(); 181 182 (my $basename, my $dirname_prod, my $dirname_repo, my $filename_prod, my $filename_repo) = get_filenames($_[0]); 183 184 system( "$SVN blame --username $DASSCM_USER $subversion_options $filename_repo" ); 185 } 186 187 188 176 189 sub commit(@) 177 190 { … … 190 203 191 204 # commit calls $EDITOR. uses "system" here, to display output 192 system( "$SVN commit --username $DASSCM_USER $subversion_options $ DASSCM_REPO" );205 system( "$SVN commit --username $DASSCM_USER $subversion_options $filename_repo" ); 193 206 # TODO: commit (-m) 194 207 } … … 232 245 } elsif (m/add/i) { 233 246 add(@ARGV); 247 } elsif (m/blame/i) { 248 blame(@ARGV); 234 249 } elsif (m/commit/i) { 235 250 commit(@ARGV);
Note:
See TracChangeset
for help on using the changeset viewer.