~ubuntu-branches/ubuntu/utopic/clementine/utopic

« back to all changes in this revision

Viewing changes to dist/mergetranslations/update.sh

  • Committer: Package Import Robot
  • Author(s): Thomas PIERSON
  • Date: 2012-01-01 20:43:39 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120101204339-lsb6nndwhfy05sde
Tags: 1.0.1+dfsg-1
New upstream release. (Closes: #653926, #651611, #657391)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
cd bzr || exit
4
 
bzr merge || exit
5
 
bzr commit --unchanged -m "Merge from main branch" || exit
6
 
cd .. || exit
7
 
 
8
 
cd svn || exit
9
 
svn update || exit
10
 
cd .. || exit
11
 
 
12
 
cp -v bzr/src/translations/*.po svn/src/translations || exit
13
 
svn add svn/src/translations/*.po
14
 
cd svn/bin || exit
15
 
cmake .. || exit
16
 
make -j8 || exit
17
 
make -j8 || exit
18
 
cd ../.. || exit