Skip to content

Commit

Permalink
Further refinements of fullsbt to display messages
Browse files Browse the repository at this point in the history
  • Loading branch information
dchenbecker committed Feb 16, 2011
1 parent 8c0a9cf commit 8068fc7
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions scripts/fullsbt
Expand Up @@ -18,10 +18,13 @@ then
exit
fi

pushd ${LIFT_FRAMEWORK_HOME:=../../framework} && \
./liftsh "$@" && popd && \
pushd ${LIFT_MODULES_HOME:=../../modules} && \
./liftsh "$@" && popd && \
pushd ${LIFT_EXAMPLES_HOME:=../../examples} && \
./liftsh "$@" && popd

pushd ${LIFT_FRAMEWORK_HOME:=../../framework} &&
echo "building framework in $LIFT_FRAMEWORK_HOME" &&
./liftsh "$@" && popd &&
pushd ${LIFT_MODULES_HOME:=../../modules} &&
echo "building modules in $LIFT_MODULES_HOME" &&
./liftsh "$@" && popd &&
pushd ${LIFT_EXAMPLES_HOME:=../../examples} &&
echo "building examples in $LIFT_EXAMPLES_HOME" &&
./liftsh "$@" && popd &&
echo -e "\n\nBuild Complete!\n\n"

0 comments on commit 8068fc7

Please sign in to comment.