Skip to content

Commit

Permalink
Merge pull request #101 from rjleveque/pull_all
Browse files Browse the repository at this point in the history
add pull_all.sh and update for 5.4.0-alpha pre-release
  • Loading branch information
mandli committed Jan 6, 2017
2 parents b9fbfa8 + 04047ea commit 8cd7f99
Show file tree
Hide file tree
Showing 7 changed files with 55 additions and 5 deletions.
4 changes: 4 additions & 0 deletions README.md
Expand Up @@ -4,6 +4,10 @@ The following command is sufficient to get up and running with PyClaw, VisClaw,

pip install clawpack

If you want to install clawpack in a manner that allows also using the
Fortran codes (Classic, AMRClaw, and GeoClaw), see
http://www.clawpack.org/installing.html

# Installation Tools

## Git
Expand Down
2 changes: 1 addition & 1 deletion amrclaw
2 changes: 1 addition & 1 deletion clawutil
46 changes: 46 additions & 0 deletions pull_all.sh
@@ -0,0 +1,46 @@
#!/bin/sh

# Execute this script from the top level clawpack directory,
# assumed to be a git clone of git://github.com/clawpack/clawpack.

# Before running this you might want to do:
# python $CLAW/clawutil/src/python/clawutil/claw_git_status.py
# and then check the files
# claw_git_status.txt and claw_git_diffs.txt
# to make sure you don't have uncommitted changes in these repositories.

# The commands below check out the master branch of each repository
# and pull any recent changes.

git checkout master
git pull

cd pyclaw
git checkout master
git pull

cd ../classic
git checkout master
git pull

cd ../amrclaw
git checkout master
git pull

cd ../geoclaw
git checkout master
git pull

cd ../clawutil
git checkout master
git pull

cd ../visclaw
git checkout master
git pull

cd ../riemann
git checkout master
git pull

cd ..
2 changes: 1 addition & 1 deletion pyclaw
Submodule pyclaw updated 1 files
+4 −2 src/pyclaw/io/hdf5.py
2 changes: 1 addition & 1 deletion visclaw

0 comments on commit 8cd7f99

Please sign in to comment.