]> git.wh0rd.org - tt-rss.git/blame_incremental - utils/create-release-deb.sh
Merge branch 'master' into tiny-oop
[tt-rss.git] / utils / create-release-deb.sh
... / ...
CommitLineData
1#!/bin/sh -ei
2
3if [ -z $1 ]; then
4 echo usage: $0 VERSION
5 exit 1
6fi
7
8git clone . dpkg-tmp/tt-rss
9cd dpkg-tmp/tt-rss
10git checkout $1
11
12debuild -i -us -uc
13debuild -i -us -uc -b -aamd64
14
15cd ..
16
17reprepro -b /var/www/apt include unstable tt-rss*_i386.changes
18reprepro -b /var/www/apt include unstable tt-rss*_amd64.changes
19
20#cd ..
21#rm -rf dpkg-tmp