761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
|
[setup]
ezpropvars sh
---------------------------
.Write your ezsteps. The loadenv.csh step will use /bin/csh as its shell, other steps will use bash.
---------------------------
[ezsteps]
loadenv.csh source $REF/ourenviron.csh
compile make
install make install
---------------------------
Bash and csh are supported. You can override the shell binary location
from the default /bin/bash and /bin/csh if needed.
|
>
>
>
>
|
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
|
[setup]
ezpropvars sh
---------------------------
.Write your ezsteps. The loadenv.csh step will use /bin/csh as its shell, other steps will use bash.
---------------------------
[ezsteps]
# if your upstream file is csh you can force csh like this
loadenv.csh source $REF/ourenviron.csh
# if your upstream is bash
loadenv source $REF/ourenviron.sh
compile make
install make install
---------------------------
Bash and csh are supported. You can override the shell binary location
from the default /bin/bash and /bin/csh if needed.
|