Skip to content

Commit

Permalink
Make all static data files ".tar.gz" for consistency and smaller file…
Browse files Browse the repository at this point in the history
… size
  • Loading branch information
mkavulich committed Jun 23, 2022
1 parent 3bf7609 commit 0b693ad
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions contrib/get_mg_inccn_data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ BASEDIR=$MYDIR/..

# Change to directory containing the physics input data, download and extract archive
cd $BASEDIR/scm/data/physics_input_data/
wget https://github.com/NCAR/ccpp-scm/releases/download/v6.0.0/MG_INCCN_data.tar
tar -xvf MG_INCCN_data.tar
rm -f MG_INCCN_data.tar
wget https://github.com/NCAR/ccpp-scm/releases/download/v6.0.0/MG_INCCN_data.tar.gz
tar -xvf MG_INCCN_data.tar.gz
rm -f MG_INCCN_data.tar.gz
cd $BASEDIR/

6 changes: 3 additions & 3 deletions contrib/get_thompson_tables.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ BASEDIR=$MYDIR/..

# Change to directory containing the physics input data, download and extract archive
cd $BASEDIR/scm/data/physics_input_data/
wget https://github.com/NCAR/ccpp-scm/releases/download/v6.0.0/thompson_tables.tar
tar -xvf thompson_tables.tar
rm -f thompson_tables.tar
wget https://github.com/NCAR/ccpp-scm/releases/download/v6.0.0/thompson_tables.tar.gz
tar -xvf thompson_tables.tar.gz
rm -f thompson_tables.tar.gz
cd $BASEDIR/

0 comments on commit 0b693ad

Please sign in to comment.