Renaming rename ;-)
This commit is contained in:
parent
5dda27cac3
commit
8f6fd51e68
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user