mirror of
https://github.com/dvorka/hstr.git
synced 2024-11-15 20:43:57 +08:00
24 lines
360 B
Bash
Executable file
24 lines
360 B
Bash
Executable file
#!/bin/bash
|
|
|
|
export SCRIPTHOME=`pwd`
|
|
|
|
. ./env.sh
|
|
|
|
rm -rvf ../debian
|
|
cp -rvf ${HHSRC}/debian ..
|
|
|
|
cp changelog-${UBUNTUVERSION} ../debian/changelog
|
|
cd ..
|
|
dch -i
|
|
cd dist
|
|
|
|
cd ../..
|
|
mv hh ${HH}
|
|
cd ${HH}
|
|
bzr commit -m "Update for ${HH} at ${NOW}."
|
|
bzr builddeb -- -us -uc
|
|
bzr builddeb -S
|
|
cd ../build-area
|
|
pbuilder-dist ${UBUNTUVERSION} build ${HHRELEASE}.dsc
|
|
|
|
# eof
|