(s string)
| 2063 | } |
| 2064 | |
| 2065 | func shellSingleQuote(s string) string { |
| 2066 | return "'" + strings.ReplaceAll(s, "'", `'"'"'`) + "'" |
| 2067 | } |
| 2068 | |
| 2069 | func formatBootstrapUID(uid int) string { |
| 2070 | if uid <= 0 { |
no outgoing calls
no test coverage detected