From 95ab5adda181e5a7c5467138295f2f9bba5c67bd Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sun, 2 Apr 2017 20:29:00 +0200 Subject: [PATCH] local: Expose layout as extended option --- src/restic/backend/local/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/restic/backend/local/config.go b/src/restic/backend/local/config.go index 4acd57a13..16fdc3752 100644 --- a/src/restic/backend/local/config.go +++ b/src/restic/backend/local/config.go @@ -9,7 +9,7 @@ import ( // Config holds all information needed to open a local repository. type Config struct { Path string - Layout string + Layout string `option:"layout"` } // ParseConfig parses a local backend config.