From 89c1b7423027131d1e1fc1773297cd5e78837779 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Mass=C3=A9?= Date: Tue, 16 May 2017 16:03:28 +0100 Subject: [PATCH] fix a PATH issue --- s2i/bin/assemble | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/s2i/bin/assemble b/s2i/bin/assemble index f797c8e..9b963d7 100755 --- a/s2i/bin/assemble +++ b/s2i/bin/assemble @@ -23,4 +23,5 @@ echo "---> Installing application source..." cp -Rf /tmp/src/. ./ echo "---> Building application from source..." -go build -o main +export PATH="$PATH:/usr/local/go/bin" +go build -o ../main