1
0
Fork 0
forked from len0rd/rockbox

make the script zip the output

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26373 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2010-05-29 14:00:55 +00:00
parent d2f26206ba
commit e8ec20476f

View file

@ -42,10 +42,9 @@ foreach (@files)
$file = $_; $file = $_;
$out = "$tmp/" . `basename $file`; chomp($out); $out = "$tmp/" . `basename $file`; chomp($out);
`./skinupdater $args $file $out`; `./skinupdater $args $file $out`;
print "$out"; `diff -u $file $out >> $tmp/$theme_name.diff`;
`diff -u $file $out >> $tmp/changes.diff`;
`mv $out $file`; `mv $out $file`;
# TODO zip up the new folder.. `cd $outdir && zip -r $tmp/$theme_name.zip .`;
} }