source: gs2-extensions/subversion/trunk/src/CASCADE-MAKE.sh@ 23094

Last change on this file since 23094 was 23094, checked in by sjm84, 14 years ago

Upgraded the SVN extension to make use of the exthome variable in cascade-lib.bash

  • Property svn:executable set to *
File size: 335 bytes
Line 
1#!/bin/bash
2
3source cascade-make/lib/cascade-lib.bash GEXTSVN . $*
4source setup.bash
5
6for d in packages ; do
7 echo "Running $d/CASCADE-MAKE.sh"
8
9 (cd $d ; ./CASCADE-MAKE.sh $*)
10
11 if [ $? != 0 ] ; then
12 echo "Error encountered running $d/CASCADE-MAKE.sh"
13 exit 1
14 fi
15done
16
17if [ $makedist = "1" ] ; then
18 toplevel_make_dist
19fi
Note: See TracBrowser for help on using the repository browser.