[Bug 467655] Review Request: yafaray - a raytracer for Blender.

bugzilla at redhat.com bugzilla at redhat.com
Fri Oct 31 09:06:06 UTC 2008


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 at lcg.ufrj.br>  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.




More information about the Fedora-package-review mailing list