about summary refs log tree commit diff
path: root/main.go
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2017-05-08T12·18+0200
committerVincent Ambo <tazjin@gmail.com>2017-05-08T12·20+0200
commitcb6413bff708551975eda7368595a60a144731af (patch)
treef1ec1a17a95c17013392d4680115a0e5d81a81f6 /main.go
parent20ccc33347c325075cc6f9dfab637ec22660347e (diff)
fix main: Exit with kubectl status code
If kubectl fails during a kontemplate run, kontemplate should also
exit with a non-zero status code.

This fixes #43
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/main.go b/main.go
index 53f4defd85..0fcf93d66e 100644
--- a/main.go
+++ b/main.go
@@ -11,7 +11,7 @@ import (
 	"gopkg.in/alecthomas/kingpin.v2"
 )
 
-const version string = "1.0"
+const version string = "1.0.1"
 
 // This variable will be initialised by the Go linker during the builder
 var gitHash string
@@ -155,7 +155,5 @@ func runKubectlWithResources(c *context.Context, kubectlArgs *[]string, resource
 	}
 	stdin.Close()
 
-	kubectl.Wait()
-
-	return nil
+	return kubectl.Wait()
 }