Confirmed users
4,293
edits
| Line 86: | Line 86: | ||
--checksums-dir checksums --snippet-dir aus2 --test-snippet-dir aus2.test -v 2>&1 | tee snippets.log | --checksums-dir checksums --snippet-dir aus2 --test-snippet-dir aus2.test -v 2>&1 | tee snippets.log | ||
</pre> | </pre> | ||
== Fix 28.0/29.0.1 -> 31.0 partials == | |||
build1 was specified instead of build2 for both 28.0 and 29.0.1, so the partials were generated using the early build and don't apply to the shipped build. Planning to regenerate the partials and snippets. In the meantime move away the bogus files to help the ftp.m.o cache clear. | |||
# ffxbld@stage | |||
cd /pub/mozilla.org/firefox/candidates/31.0-candidates | |||
for f in `find build1/update/ -type f -name 'firefox-28.0-31.0*' -o -name 'firefox-29.0.1-31.0*'`; do | |||
dest=`dirname ${f/build1/build1-broken-updates}`; | |||
mkdir -p $dest; | |||
mv -v $f $dest/; | |||
done | |||