diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-10-08 04:25:09 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-10-08 04:25:09 +0000 |
commit | 3ef32e8a48b925e770baa9a97f4b82af9834d6d2 (patch) | |
tree | efb4364a25ea0243e6a149bddaca8aeaae9e2745 | |
parent | bf6c5dd8702a43bfcc46e77dee425e536b1ec828 (diff) |
script to check a vanilla release tarball into the pure-data SVN
svn path=/trunk/; revision=15543
-rwxr-xr-x | scripts/checkin-vanilla-release.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/checkin-vanilla-release.sh b/scripts/checkin-vanilla-release.sh new file mode 100755 index 00000000..b65ca193 --- /dev/null +++ b/scripts/checkin-vanilla-release.sh @@ -0,0 +1,12 @@ +#!/bin/sh +# +# this script is for checking in a Pd release tarball into the pure-data SVN + +cd ~/code/pure-data/trunk/pd +rm -rf bin/* +rm -rf src/autom4te.cache/ +find ~/code/pure-data/trunk/pd -type f | grep -v svn | xargs rm +tar --strip-components 1 -xzf ~/Downloads/pd-0.43-0.src.tar.gz +rm configure src/configure src/makefile.dependencies +svn rm `svn st| sed -n 's|^!\(.*\)|\1|p'` +svn add `svn st| sed -n 's|^?\(.*\)|\1|p'` |