2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 01:22:00 +00:00

Add optional location for builddeb

This commit is contained in:
Jarrod Johnson 2019-02-05 10:29:31 -05:00
parent 74963a73cc
commit 4540354ff2

View File

@ -20,5 +20,8 @@ else
# Clean up the generated files in this directory
rm -rf $PKGNAME.egg-info dist setup.py
rm -rf $(find deb_dist -mindepth 1 -maxdepth 1 -type d)
if [ ! -z "$1" ]; then
cp deb_dist/* $1/
fi
fi
exit 0