(projectDir, scriptName string)
| 133 | } |
| 134 | |
| 135 | func ScriptPath(projectDir, scriptName string) string { |
| 136 | return filepath.Join(projectDir, scriptsDir, scriptName+".sh") |
| 137 | } |
| 138 | |
| 139 | func ScriptBody(d devboxer, body string) (string, error) { |
| 140 | var buf bytes.Buffer |
no outgoing calls