canmove, Confirmed users
6,441
edits
| Line 123: | Line 123: | ||
# Chmoding Firefox means the first "pushsnip" resets the permissions, which makes updates live again before all of the fixed snippets are in place. | # Chmoding Firefox means the first "pushsnip" resets the permissions, which makes updates live again before all of the fixed snippets are in place. | ||
chmod 000 Firefox | chmod 000 Firefox | ||
# Delete all of the 32.0.3 snippets, which point at 33.0 | |||
rm -rf Firefox/32.0.3 | rm -rf Firefox/32.0.3 | ||
# Delete the single arch Darwin snippets, which won't be overwritten below, because this is the first time we generated them | |||
find . -maxdepth 2 -mindepth 2 -name Darwin_x86_64-gcc3 -exec rm -rf {} \; | find . -maxdepth 2 -mindepth 2 -name Darwin_x86_64-gcc3 -exec rm -rf {} \; | ||
find . -maxdepth 2 -mindepth 2 -name Darwin_x86-gcc3 -exec rm -rf {} \; | find . -maxdepth 2 -mindepth 2 -name Darwin_x86-gcc3 -exec rm -rf {} \; | ||
| Line 133: | Line 135: | ||
mv Firefox-33.0-build1-test{,-again} | mv Firefox-33.0-build1-test{,-again} | ||
mv Firefox-33.0-build1-test-fixed-whatsnew{,-again} | mv Firefox-33.0-build1-test-fixed-whatsnew{,-again} | ||
# Repush the 32.0.3 snippets, to point 32.0.2 and earlier at 32.0.3 again | |||
~/bin/pushsnip Firefox-32.0.3-build1-again | ~/bin/pushsnip Firefox-32.0.3-build1-again | ||
# Repush the 33.0 test snippets, to point betatest/releasetest at 33.0 again | |||
~/bin/pushsnip Firefox-33.0-build1-test-again | ~/bin/pushsnip Firefox-33.0-build1-test-again | ||
~/bin/pushsnip Firefox-33.0-build1-test-fixed-whatsnew-again | ~/bin/pushsnip Firefox-33.0-build1-test-fixed-whatsnew-again | ||