Update packaging script.

This commit is contained in:
Colby Klein
2010-01-27 11:35:58 -08:00
parent 74c0acf15f
commit f17cd94d33
+1 -1
View File
@@ -53,7 +53,7 @@ sub ZipFiles($$@)
{
print "$x\n";
# No CVS directories, no dotfiles, files only.
my $output = `find "$x" -path '*/CVS' -prune -o -path '*/.*' -prune -o '(' -type f -a -name '*' ')' -print`;
my $output = `find "$x" -path '*/CVS' -prune -o -path '*/.*' -prune -o -path '*/*.psd' -prune -o '(' -type f -a -name '*' ')' -print`;
if( $? == -1 ) { die "Find failed: $!\n"; }
if( $? & 127 ) { die "Find failed with signal %d\n", ($? & 127); }
if( $? >> 8 != 0 ) { exit 1; }