2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-25 02:52:07 +00:00

Clean up extracted directory on successful deb

This commit is contained in:
Jarrod Johnson 2019-02-04 15:14:39 -05:00
parent f649efa110
commit b07d4e9736

View File

@ -18,5 +18,6 @@ if [ $? -ne 0 ]; then
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)
fi
exit 0