]> git.wh0rd.org - tt-rss.git/blob - utils/create-release-deb.sh
mobile: fix toggle published button not working
[tt-rss.git] / utils / create-release-deb.sh
1 #!/bin/sh -ei
2
3 if [ -z $1 ]; then
4 echo usage: $0 VERSION
5 exit 1
6 fi
7
8 git clone . dpkg-tmp/tt-rss
9 cd dpkg-tmp/tt-rss
10 git co $1
11
12 debuild -i -us -uc
13
14 cd ..
15
16 reprepro -b /var/www/apt include unstable tt-rss*_i386.changes
17
18 #cd ..
19 #rm -rf dpkg-tmp