Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=467655 --- Comment #21 from Paulo Roma Cavalcanti <roma@xxxxxxxxxxx> 2008-10-31 05:06:05 EDT --- #!/bin/sh # # Repackages a snapshtot, removing any .svn # directory. # # Input: directory # Output: tarball (directory.tar.gz) # # Usage: yafaray-snapshot.sh yafaray if [[ $# < 1 ]]; then echo "yafaray-snapshot.sh dir" exit 0; fi DIR="$1" find "$DIR" -name .svn -print0 | xargs -0 rm -rf tar -zcvf "$DIR".tar.gz ./"$DIR" -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. _______________________________________________ Fedora-package-review mailing list Fedora-package-review@xxxxxxxxxx http://www.redhat.com/mailman/listinfo/fedora-package-review