dist: cleanup dependency-reduced-pom.xml when rebuilding ubuntu package

This commit is contained in:
Takuya ASADA 2015-11-25 03:24:45 +09:00
parent 378ed90653
commit 2310eb6844

View File

@ -5,8 +5,8 @@ if [ ! -e dist/ubuntu/build_deb.sh ]; then
exit 1
fi
if [ -e debian ] || [ -e build ] || [ -e target ] || [ -e m2 ]; then
rm -rf debian build target m2
if [ -e debian ] || [ -e build ] || [ -e target ] || [ -e m2 ] || [ -e dependency-reduced-pom.xml ]; then
rm -rf debian build target m2 dependency-reduced-pom.xml
fi
VERSION=$(./SCYLLA-VERSION-GEN)