diff --git a/Dockerfile b/Dockerfile index 6a4d62a..1425d68 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ MAINTAINER RUN apk add --no-cache ca-certificates -ENV RANCHER_GEN_RELEASE v0.4.0 +ENV RANCHER_GEN_RELEASE v0.4.1 ADD https://github.com/janeczku/go-rancher-gen/releases/download/${RANCHER_GEN_RELEASE}/rancher-gen-linux-amd64.tar.gz /tmp/rancher-gen.tar.gz RUN tar -zxvf /tmp/rancher-gen.tar.gz -C /usr/local/bin \ diff --git a/VERSION b/VERSION index fb7a04c..be5bf2a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v0.4.0 +v0.4.1 \ No newline at end of file diff --git a/runner.go b/runner.go index 71b42ef..05da91a 100644 --- a/runner.go +++ b/runner.go @@ -247,11 +247,11 @@ func (r *runner) execLabelGroup(action string, command string, label string, ver if action == "check" { if err := check(pCommand, filePath); err != nil { - return fmt.Errorf("Check command failed: %v", err) + fmt.Errorf("Check command failed: %v", err) } } else if action == "notify"{ if err := notify(pCommand, verbose); err != nil { - return fmt.Errorf("Notify command failed: %v", err) + fmt.Errorf("Notify command failed: %v", err) } } }