this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Allow Building DSC (#621)

authored by

TheBrokenRail and committed by
Andrew Hyatt
120408fc d8ee3da2

+8 -1
+8 -1
tools/makedeb
··· 4 4 DATE=$(date +%Y%m%d) 5 5 rm -f debian/changelog 6 6 EDITOR=true NAME="Darling build server" EMAIL=noreply@darlinghq.org dch -u low -v 0.1.${DATE} --create --distribution testing --package darling "Daily build" 7 - debuild -us -uc -b 7 + 8 + if [[ "$1" = "--dsc" ]]; then 9 + ARG='-S' 10 + else 11 + ARG='-b' 12 + fi 13 + 14 + debuild -us -uc ${ARG}