Renaming rename ;-)

This commit is contained in:
ruidajo 2022-03-17 15:25:48 -05:00
parent 5dda27cac3
commit 8f6fd51e68
1 changed files with 6 additions and 3 deletions

View File

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