@@ 74,6 74,11 @@ func (s *Secrets) Read() { line := scanner.Text()
linum += 1
+ if strings.HasPrefix(line, "#") {
+ // this line is a comment
+ continue
+ }
+ secretName, secretValue, found := strings.Cut(line, "=")
if ! found {
log.Printf("Weird line (#%d) in secrets file", linum)