]> git.wh0rd.org - tt-rss.git/blob - utils/create-release-deb.sh
js translations: look for notify_info and notify_progress; update translations
[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 checkout $1
11
12 debuild -i -us -uc
13 #debuild -i -us -uc -b -aamd64
14
15 cd ..
16
17 if [ ! -z "$DEPLOY_DEBS" ]; then
18 reprepro -b /var/www/apt include unstable tt-rss*_i386.changes
19 #reprepro -b /var/www/apt include unstable tt-rss*_amd64.changes
20 fi
21
22 #cd ..
23 #rm -rf dpkg-tmp