From c87fc7bb5d871e930fb268ca02271b378bffbb4f Mon Sep 17 00:00:00 2001 From: atz Date: Tue, 12 Oct 2010 17:01:52 +0000 Subject: [PATCH] Be sure to copy new JS files from OpenSRF on a FULL update/install git-svn-id: svn://svn.open-ils.org/ILS/trunk@18282 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- build/tools/update.sh | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/build/tools/update.sh b/build/tools/update.sh index a4fcb5ae2b..8b275c1252 100755 --- a/build/tools/update.sh +++ b/build/tools/update.sh @@ -58,10 +58,11 @@ The purpose of this script is to consolidate a lot of the annoying and error-prone tasks associated with an upgrade for a developer. Considerations: - * Run as opensrf. + * Run as opensrf user * opensrf needs sudo - * Assumes opensrf has a configured (as in ./configure) both ILS and - OpenSRF as svn or git-svn checkouts + * Assumes opensrf has OpenILS and OpenSRF repositories as svn or git-svn + checkouts and both have been configured (as in ./configure) + END_OF_USAGE } @@ -98,6 +99,7 @@ BASE=~ # default to $HOME (~ doesn't like :- syntax for whatever reason) OSRF=${OPT_OSRFDIR:-$BASE/OpenSRF/trunk}; ILS=${OPT_EGDIR:-$(pwd)}; XUL="$INSTALL/var/web/xul"; +JSDIR="$INSTALL/lib/javascript"; # only used for FULL install # ---------------------------------- # TEST and SANITY CHECK @@ -150,6 +152,10 @@ if [ -n "$OPT_FULL" ]; then cd $OSRF && make; cd $ILS && make; cd $OSRF && sudo make install; + if [ -d "$JSDIR" ]; then + echo "Copying OpenSRF javascript files into $JSDIR"; + cp ./src/javascript/* $JSDIR; + fi fi sudo chown -R opensrf:opensrf $INSTALL -- 2.11.0