Renaming rename ;-)

This commit is contained in:
ruidajo 2022-03-17 15:25:48 -05:00
parent 5dda27cac3
commit 8f6fd51e68

View File

@ -411,11 +411,14 @@ FossilRepo >> remote: anUrlString [
] ]
{ #category : #accessing } { #category : #accessing }
FossilRepo >> rename: oldName newName: newName [ FossilRepo >> renameFrom: currentName to: newName [
OSSUnixSubprocess new OSSUnixSubprocess new
command: 'fossil'; command: 'fossil';
arguments: { 'rename'. oldName. newName }; arguments: {
'rename'.
currentName.
newName };
workingDirectory: self localRoot; workingDirectory: self localRoot;
redirectStdout; redirectStdout;
redirectStderr; redirectStderr;