mirror of
https://github.com/darlinghq/darling.git
synced 2026-04-28 23:10:01 -05:00
8 lines
239 B
Bash
Executable File
8 lines
239 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
DATE=$(date +%Y%m%d)
|
|
rm -f debian/changelog
|
|
EDITOR=true NAME="Darling build server" EMAIL=noreply@darlinghq.org dch -u low -v 0.1.${DATE} --create --distribution testing --package darling "Daily build"
|
|
debuild -us -uc -b
|