Skip to main content
summaryrefslogblamecommitdiffstats
blob: 56c66522b646749e61a5d697c6f98c2b375ab19d (plain) (tree)
1
2
3
4

           
                                   
                










                                           
                
 
                     
                                                                   
#!/bin/bash

clean up "dirt" from previous build
# see Bug 420078
git submodule foreach git clean -f -d -x
git submodule foreach git reset --hard HEAD
git clean -f -d -x
git reset --hard HEAD

# update master and submodules
git checkout master
git pull --recurse-submodules
git submodule update

# run the build
mvn clean verify

# find the results in
# eclipse.platform.releng.tychoeclipsebuilder/sdk/target/products/*

Back to the top