From 5bad7a578160f5a5f5dbb4c2812f612420c9361c Mon Sep 17 00:00:00 2001 From: Ashlee Young Date: Fri, 23 Oct 2015 07:30:04 -0700 Subject: Sets build environments for manually building components without the build.sh script Change-Id: I19e83961fdeaa8705d6ed4676ecc08d2c4216b7c Signed-off-by: Ashlee Young --- setenv.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 setenv.sh diff --git a/setenv.sh b/setenv.sh new file mode 100755 index 00000000..7900ebaf --- /dev/null +++ b/setenv.sh @@ -0,0 +1,6 @@ +#!/bin/bash +export GERRITROOT="$(pwd)" +export ANT_HOME=$GERRITROOT/framework/src/ant/apache-ant-1.9.6 +export M2_HOME=$GERRITROOT/framework/build/maven +export M2=$M2_HOME/bin +export PATH=$PATH:$ANT_HOME/bin:$M2 -- cgit