source: gs3-extensions/mars-src/trunk/src/CASCADE-MAKE.sh

Last change on this file was 34655, checked in by davidb, 3 years ago

Fix to devel.bash sourcing sequnce: needs to be pushd+popd combo

  • Property svn:executable set to *
File size: 352 bytes
Line 
1#!/bin/bash
2
3source ../cascade-make/lib/cascade-lib.bash GEXT_MARS .. $*
4
5if [ -z "$GEXT_MARS_DEVEL" ] ; then
6 pushd .. && source ./devel.bash && popd
7fi
8
9for d in WAVESURFER ; do
10 echo " Running CASCADE-MAKE/$d.sh"
11
12 ./CASCADE-MAKE/$d.sh $*
13
14 if [ $? != 0 ] ; then
15 echo "Error encountered running CASCADE-MAKE/$d.sh"
16 exit 1
17 fi
18done
Note: See TracBrowser for help on using the repository browser.