Skip to content

Commit 53aacec

Browse files
committed
[chore](debianize): Add a clean option to debianize
1 parent 45030dd commit 53aacec

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

infra/build/debianize.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
# Script for building a debian package using DPKG
44

5+
if [ "$1" == "clean" ]
6+
then
7+
rm -rf shellinclude_*_all* bin docs *.deb *.zip
8+
exit 0
9+
fi
10+
511
# Set up the following variables based on your package
612
PACKAGENAME=shellinclude
713
VERSION=$(git tag | sort -r | tr '\n' ' ' | cut -d" " -f1)

0 commit comments

Comments
 (0)