From e7632f02e5c9971bf53b793c254c097563ad0340 Mon Sep 17 00:00:00 2001 From: Yuri Konotopov Date: Thu, 18 Aug 2022 21:46:29 +0400 Subject: [PATCH] entrypoint: do not lower ini keys --- entrypoint/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint/main.go b/entrypoint/main.go index 52723df..8f77afb 100644 --- a/entrypoint/main.go +++ b/entrypoint/main.go @@ -96,7 +96,7 @@ func entrypoint() error { } _, errNK := cfg.Section(directive[len(directive)-2]).NewKey( - strings.ToLower(directive[len(directive)-1]), kv[1], + directive[len(directive)-1], kv[1], ) if errNK != nil { return errNK