Bug 1111980 - Part 5 fix bug where using moztt from cache breaks builds. r=garndt

This commit is contained in:
jlal@mozilla.com 2014-12-09 18:16:29 -08:00
parent 1420327259
commit eaba4f63d3
2 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
0.0.27
0.0.29

View File

@ -3,13 +3,13 @@
gecko_dir=$1
test -d $gecko_dir
if [ ! -d "gcc" ]; then
if [ ! -d "$gecko_dir/gcc" ]; then
cd $gecko_dir
curl https://s3-us-west-2.amazonaws.com/test-caching/packages/gcc.tar.xz | tar Jx
cd -
fi
if [ ! -d "sccache" ]; then
if [ ! -d "$gecko_dir/sccache" ]; then
cd $gecko_dir
curl https://s3-us-west-2.amazonaws.com/test-caching/packages/sccache.tar.bz2 | tar jx
cd -
@ -21,7 +21,7 @@ if [ ! -z $MOZTT_GIT_URL ] || [ ! -z $MOZTT_REVISION ]; then
rm -rf moztt
fi
if [ ! -d "moztt" ]; then
if [ ! -d "$gecko_dir/moztt" ]; then
moztt_url=${MOZTT_GIT_URL:=https://github.com/mozilla-b2g/moztt}
moztt_revision=${MOZTT_REVISION:=master}
tc-vcs clone $moztt_url $gecko_dir/moztt