Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2013-02-15 06:40:20 +0000
committerDavid Williams2013-02-15 06:40:37 +0000
commit1a13a3363a48c38964b380c3e105f3f921675be8 (patch)
tree862d2dff67455012cf4964c0d675e057975ee66b /production/build-functions.sh
parentda8110d9f0f6f7cfdebf858ac39d8f9406c034e2 (diff)
downloadeclipse.platform.releng.aggregator-1a13a3363a48c38964b380c3e105f3f921675be8.tar.gz
eclipse.platform.releng.aggregator-1a13a3363a48c38964b380c3e105f3f921675be8.tar.xz
eclipse.platform.releng.aggregator-1a13a3363a48c38964b380c3e105f3f921675be8.zip
Bug 400657 - [CBI] Are we getting clean builds?
Diffstat (limited to 'production/build-functions.sh')
-rw-r--r--production/build-functions.sh12
1 files changed, 7 insertions, 5 deletions
diff --git a/production/build-functions.sh b/production/build-functions.sh
index a61671659..9cb7e2af3 100644
--- a/production/build-functions.sh
+++ b/production/build-functions.sh
@@ -99,8 +99,9 @@ fn-git-submodule-update ()
# USAGE: fn-git-clean
fn-git-clean ()
{
- echo git clean -f -d
- git clean -f -d
+ # See bug 400657
+ echo git clean -f -d -x
+ git clean -f -d -x
}
# USAGE: fn-git-reset
@@ -112,9 +113,10 @@ fn-git-reset ()
# USAGE: fn-git-clean-submodules
fn-git-clean-submodules ()
-{
- echo git submodule foreach git clean -f -d
- git submodule foreach git clean -f -d
+{
+ # See bug 400657
+ echo git submodule foreach git clean -f -d -x
+ git submodule foreach git clean -f -d -x
}

Back to the top