mirror of
https://github.com/hugomods/docker.git
synced 2025-04-26 05:00:50 +03:00
10 lines
278 B
HTML
10 lines
278 B
HTML
{{ $api := "https://api.github.com" }}
|
|
{{ with try (resources.GetRemote $api) }}
|
|
{{ with .Err }}
|
|
{{ errorf "failed to get remote %s: %s." $api . }}
|
|
{{ else }}
|
|
{{ if not .Value }}
|
|
{{ errorf "failed to get remote: %s" $api }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|