Rename build-deb.sh to build-stable-deb.sh

Unifies the naming with the other build-unstable-deb.sh script.
This commit is contained in:
2021-11-06 03:18:58 -04:00
parent 2506098223
commit fbfbd70461
2 changed files with 1 additions and 1 deletions

10
build-stable-deb.sh Executable file
View File

@ -0,0 +1,10 @@
#!/bin/sh
pushd $( git rev-parse --show-toplevel ) &>/dev/null
ver="$( head -1 debian/changelog | awk -F'[()-]' '{ print $2 }' )"
git pull
rm ../pvc_*
find . -name "__pycache__" -exec rm -r {} \;
dh_make -p pvc_${ver} --createorig --single --yes
dpkg-buildpackage -us -uc
dh_clean
popd &>/dev/null