Advertisement
Guest User

Untitled

a guest
Feb 20th, 2011
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. diff --git a/tools/release/bins.pl b/tools/release/bins.pl
  2. index c32e7d9..1770b8a 100755
  3. --- a/tools/release/bins.pl
  4. +++ b/tools/release/bins.pl
  5. @@ -49,11 +49,15 @@ sub runone {
  6. chdir "..";
  7.  
  8. my $o="build-$dir/rockbox.zip";
  9. + my $map="build-$dir/rockbox-maps.zip";
  10. if (-f $o) {
  11. my $newo="output/rockbox-$dir-$version.zip";
  12. + my $newmap="output/rockbox-$dir-$version-maps.zip";
  13. system("mkdir -p output");
  14. system("mv $o $newo");
  15. print "moved $o to $newo\n" if($verbose);
  16. + system("mv $map $newmap");
  17. + print "moved $map to $newmap\n" if($verbose);
  18. }
  19.  
  20. print "remove all contents in build-$dir\n" if($verbose);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement