From fea4e1db6a74d363686beb4af909ec798fecdd19 Mon Sep 17 00:00:00 2001 From: Scott Lanning Date: Wed, 2 Jan 2019 17:31:38 +0100 Subject: [PATCH] fix a bootstrap.sh error The error from bootstrap.sh was: "./dev.env: line 23: source: build.env: file not found". I think it broke in commit 157ebf5830e6c . Not sure if this is the right fix, but it worked for me (bootstrap.sh does `source ./build.env`, so it's probably ok). Signed-off-by: Scott Lanning --- dev.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev.env b/dev.env index 5e0b69b78c2..e31c16167e2 100644 --- a/dev.env +++ b/dev.env @@ -20,7 +20,7 @@ # to build a package to be run under a POSIX shell so non-POSIX # syntax will break that as dev.env will not be sourced by bash.. -source build.env +source ./build.env export GOTOP=$VTTOP/go export PYTOP=$VTTOP/py