(isDts bool)
| 1125 | } |
| 1126 | |
| 1127 | func (ctx *BuildContext) getBuildArgsPrefix(isDts bool) string { |
| 1128 | if a := encodeBuildArgs(ctx.args, isDts); a != "" { |
| 1129 | return "X-" + a + "/" |
| 1130 | } |
| 1131 | return "" |
| 1132 | } |
| 1133 | |
| 1134 | func (ctx *BuildContext) getNodeEnv() string { |
| 1135 | if ctx.dev { |
no test coverage detected