Skip to content
This repository has been archived by the owner on Oct 23, 2020. It is now read-only.

Commit

Permalink
Fix shell script for getting atmosphere physics lookup tables:
Browse files Browse the repository at this point in the history
'==' should be '-eq' for integer comparisons.
  • Loading branch information
mgduda committed Jul 23, 2013
1 parent 89a9e0a commit fb67b57
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/core_atmosphere/physics/checkout_data_files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ fi
# Try using 'git'
#
which git
if [ $? == 0 ]; then
if [ $? -eq 0 ]; then
echo "*** trying git to obtain WRF physics tables ***"
git clone git://github.com/MPAS-Dev/MPAS-Data.git
if [ $? == 0 ]; then
if [ $? -eq 0 ]; then
mv MPAS-Data/atmosphere/physics_wrf/files physics_wrf/
rm -rf MPAS-Data
exit 0
Expand All @@ -48,10 +48,10 @@ fi
# Try using 'svn'
#
which svn
if [ $? == 0 ]; then
if [ $? -eq 0 ]; then
echo "*** trying svn to obtain WRF physics tables ***"
svn checkout --non-interactive --trust-server-cert https://github.com/MPAS-Dev/MPAS-Data.git
if [ $? == 0 ]; then
if [ $? -eq 0 ]; then
mv MPAS-Data.git/trunk/atmosphere/physics_wrf/files physics_wrf/
rm -rf MPAS-Data.git
exit 0
Expand All @@ -67,12 +67,12 @@ fi
# Try using 'curl'
#
which curl
if [ $? == 0 ]; then
if [ $? -eq 0 ]; then
echo "*** trying curl to obtain WRF physics tables ***"
curl -o master.zip https://codeload.github.com/MPAS-Dev/MPAS-Data/zip/master
if [ $? == 0 ]; then
if [ $? -eq 0 ]; then
which unzip
if [ $? == 0 ]; then
if [ $? -eq 0 ]; then
unzip master.zip
mv MPAS-Data-master/atmosphere/physics_wrf/files physics_wrf/
rm -rf master.zip MPAS-Data-master
Expand Down

0 comments on commit fb67b57

Please sign in to comment.