(s string)
| 125 | } |
| 126 | |
| 127 | func shouldUseSingleQuotes(s string) bool { |
| 128 | return hasEvenDoubleQuotes(s) && !strings.Contains(s, `\`) && !strings.Contains(s, `'`) |
| 129 | } |
| 130 | |
| 131 | func escapeDoubleQuotedEnvValue(s string) string { |
| 132 | replacer := strings.NewReplacer( |
no test coverage detected