From 576bf022a12c34ec652d736fe523168d3b116a8a Mon Sep 17 00:00:00 2001 From: Trevor Bramwell Date: Tue, 2 Sep 2014 17:12:02 -0700 Subject: [PATCH] Remove breakpad.tar.gz after unpacking in bootstrap --- scripts/bootstrap.sh | 2 +- scripts/clean.sh | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 1958e33b3b..28e48c2fd9 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -19,7 +19,7 @@ ${VIRTUAL_ENV}/bin/peep install --download-cache=./pip-cache -r requirements.txt # pull pre-built, known version of breakpad wget --quiet 'https://ci.mozilla.org/job/breakpad/lastSuccessfulBuild/artifact/breakpad.tar.gz' -tar -zxf breakpad.tar.gz +tar -zxf breakpad.tar.gz && rm breakpad.tar.gz mv breakpad stackwalk # Build JSON stackwalker pushd minidump-stackwalk diff --git a/scripts/clean.sh b/scripts/clean.sh index 4f84040445..e0a4092a9c 100755 --- a/scripts/clean.sh +++ b/scripts/clean.sh @@ -2,7 +2,6 @@ find ./ -type f -name "*.pyc" -exec rm {} \; rm -rf ./google-breakpad/ ./builds/ ./breakpad/ ./stackwalk -rm -rf ./breakpad.tar.gz pushd minidump-stackwalk make clean