RawScriptURL returns the direct raw shell script URL.
(script Script)
| 665 | |
| 666 | // RawScriptURL returns the direct raw shell script URL. |
| 667 | func RawScriptURL(script Script) string { |
| 668 | return fmt.Sprintf("%s/%s", RawRepoForScript(script), script.ScriptPath) |
| 669 | } |
| 670 | |
| 671 | func rawScriptURL(script Script) string { |
| 672 | return RawScriptURL(script) |
no test coverage detected