Update packaging script.
This commit is contained in:
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user