Defining local storage for repositories.
This commit is contained in:
parent
8aa5b42f94
commit
5c86e98aae
@ -7,7 +7,8 @@ Class {
|
||||
#name : #FossilRepo,
|
||||
#superclass : #Object,
|
||||
#instVars : [
|
||||
'url'
|
||||
'url',
|
||||
'local'
|
||||
],
|
||||
#category : #Fossil
|
||||
}
|
||||
@ -52,6 +53,16 @@ FossilRepo >> lastHashNumberFor: aFileName [
|
||||
^ (self checkinsFor: aFileName) first at: 'uuid'
|
||||
]
|
||||
|
||||
{ #category : #accessing }
|
||||
FossilRepo >> local [
|
||||
^ local
|
||||
]
|
||||
|
||||
{ #category : #accessing }
|
||||
FossilRepo >> local: aLocalFilePath [
|
||||
local := aLocalFilePath
|
||||
]
|
||||
|
||||
{ #category : #accessing }
|
||||
FossilRepo >> url [
|
||||
^ url
|
||||
|
Loading…
Reference in New Issue
Block a user