diff options
Diffstat (limited to 'plumbing')
-rw-r--r-- | plumbing/storer/storer.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plumbing/storer/storer.go b/plumbing/storer/storer.go index 1b7d226..9bbb44f 100644 --- a/plumbing/storer/storer.go +++ b/plumbing/storer/storer.go @@ -16,6 +16,7 @@ type Initializer interface { // Options holds configuration for the storage. type Options struct { - // Static means that the filesystem is not modified while the repo is open. - Static bool + // ExclusiveAccess means that the filesystem is not modified externally + // while the repo is open. + ExclusiveAccess bool } |