Skip to content

Commit

Permalink
improved install script
Browse files Browse the repository at this point in the history
  • Loading branch information
dalekopera committed Jun 23, 2023
1 parent eb4e38e commit c01d235
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions bin/install_galahad_main
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ galahad_compile () {
fi
fi

if [[ $PYTHON_REQUIRED == "1" ]] ; then
if [[ $PYTHON_REQUIRED == "1" && $PREC == "double" ]] ; then
if (( $DRYRUN )) ; then
echo " $MAKE $OPTIONS all_pyiface $MACROS"
else
Expand Down Expand Up @@ -172,7 +172,7 @@ galahad_compile () {
[[ $? != 0 ]] && exit 2
fi
fi
if [[ $PYTHON_REQUIRED == "1" ]] ; then
if [[ $PYTHON_REQUIRED == "1" && $PREC == "double" ]] ; then
if (( $DRYRUN )) ; then
echo " $MAKE $OPTIONS qp_pyiface $MACROS"
else
Expand Down Expand Up @@ -235,7 +235,7 @@ galahad_compile () {
[[ $? != 0 ]] && exit 2
fi
fi
if [[ $PYTHON_REQUIRED == "1" ]] ; then
if [[ $PYTHON_REQUIRED == "1" && $PREC == "double" ]] ; then
if (( $DRYRUN )) ; then
echo " $MAKE $OPTIONS rq_pyiface $MACROS"
else
Expand Down Expand Up @@ -288,7 +288,7 @@ galahad_compile () {
[[ $? != 0 ]] && exit 2
fi
fi
if [[ $PYTHON_REQUIRED == "1" ]] ; then
if [[ $PYTHON_REQUIRED == "1" && $PREC == "double" ]] ; then
if (( $DRYRUN )) ; then
echo " $MAKE $OPTIONS ucbc_pyiface $MACROS"
else
Expand Down Expand Up @@ -374,7 +374,7 @@ galahad_compile () {
[[ $? != 0 ]] && exit 2
fi
fi
if [[ $PYTHON_REQUIRED == "1" ]] ; then
if [[ $PYTHON_REQUIRED == "1" && $PREC == "double" ]] ; then
if (( $DRYRUN )) ; then
echo " $MAKE $OPTIONS go_pyiface $MACROS"
else
Expand Down

0 comments on commit c01d235

Please sign in to comment.