From 24fb59542431bbe0e02c485f2592e8561acea182 Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Tue, 19 Oct 2021 18:11:16 +0200 Subject: [PATCH] fix code smells --- ocis-pkg/config/defaults/paths.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ocis-pkg/config/defaults/paths.go b/ocis-pkg/config/defaults/paths.go index 73abf077d7..9980daedaa 100644 --- a/ocis-pkg/config/defaults/paths.go +++ b/ocis-pkg/config/defaults/paths.go @@ -10,9 +10,9 @@ const () var ( // switch between modes - BaseDataPathType string = "homedir" + BaseDataPathType = "homedir" // don't read from this, only write - BaseDataPathValue string = "/var/lib/ocis" + BaseDataPathValue = "/var/lib/ocis" ) func BaseDataPath() string {