canmove, Confirmed users
6,441
edits
(→Win32) |
(→Repack) |
||
| Line 431: | Line 431: | ||
for i in `find . -type d -not -iname xpi`; do cd $i && mv *.dmg "Firefox 3.1 Beta 2.dmg" && cd ..; done | for i in `find . -type d -not -iname xpi`; do cd $i && mv *.dmg "Firefox 3.1 Beta 2.dmg" && cd ..; done | ||
cd ../update | cd ../update | ||
for i in *.mar; do locale=`echo $i | cut -d. -f3` && mkdir -p | for i in *.mar; do locale=`echo $i | cut -d. -f3` && mkdir -p win32/$locale && mv $i mac/$locale/firefox-3.1b2.complete.mar; done | ||
cd mac | cd mac | ||
mkdir xpi | mkdir xpi | ||
| Line 443: | Line 443: | ||
===== Win32 again ===== | ===== Win32 again ===== | ||
Win32 mars were busted because they were built with the 3.1b2build1 zips. Had to re-do them. Deleted all l10n win32 builds on stage, re-pushed as follows: | Win32 mars were busted because they were built with the 3.1b2build1 zips. Had to re-do them. Deleted all l10n win32 builds on stage, re-pushed as follows: | ||
cd obj/dist | |||
mkdir stage | |||
cd stage | |||
mkdir update | |||
cp ../*.zip . | |||
cp ../install/sea/*.exe . | |||
cp ../update/*.mar update/ | |||
wget http://people.mozilla.org/~bhearsum/misc/rename.pl | |||
perl ../rename.pl . | |||
cd mac | |||
for i in `find . -type d -not -iname xpi`; do cd $i && mv *.dmg "Firefox 3.1 Beta 2.dmg" && cd ..; done | |||
cd ../update | |||
for i in *.mar; do locale=`echo $i | cut -d. -f3` && mkdir -p win32/$locale && mv $i win32/$locale/firefox-3.1b2.complete.mar; done | |||
cd win32 | |||
mkdir xpi | |||
cd xpi | |||
cp ../../../install/*.xpi . | |||
for i in *.xpi; do locale=`echo $i | cut -f3 -d.`; mv $i $locale.xpi; done | |||
cd ../../ | |||
# now in the 'stage' directory again | |||
scp -r -oIdentityFile=~/.ssh/ffxbld_dsa * ffxbld@stage.mozilla.org:/home/ftp/pub/firefox/nightly/3.1b2-candidates/build2/unsigned/ | |||
====Sign==== | ====Sign==== | ||