summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/buildzip.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/buildzip.pl b/tools/buildzip.pl
index 6df4543bd7..afa851cd88 100755
--- a/tools/buildzip.pl
+++ b/tools/buildzip.pl
@@ -33,6 +33,7 @@ sub find_copyfile {
33 $path = $_; 33 $path = $_;
34 if ($path =~ $pattern && filesize($path) > 0 && !($path =~ /\.rockbox/)) { 34 if ($path =~ $pattern && filesize($path) > 0 && !($path =~ /\.rockbox/)) {
35 copy($path, $destination); 35 copy($path, $destination);
36 chmod(0755, $destination.'/'.$path);
36 } 37 }
37 } 38 }
38} 39}