diff --git a/repository/Fossil/FossilRepo.class.st b/repository/Fossil/FossilRepo.class.st index 4c26134..6ee1c6d 100644 --- a/repository/Fossil/FossilRepo.class.st +++ b/repository/Fossil/FossilRepo.class.st @@ -147,9 +147,10 @@ FossilRepo >> remote: anUrlString [ { #category : #utilities } FossilRepo >> sanitize: aFileNameWithRelativePath [ "I dicern if my argument concerns to a versioned or an unversioned file, - and return a relative path to put the fileb." + and return a relative path to put the file." (aFileNameWithRelativePath beginsWith: '/uv') + ifFalse: [ ^ aFileNameWithRelativePath ] ifTrue: [ ^ (aFileNameWithRelativePath copyFrom: 5 to: aFileNameWithRelativePath size) ] ]