~ubuntu-branches/ubuntu/trusty/h5py/trusty-proposed

« back to all changes in this revision

Viewing changes to debian/orig-tar.sh

  • Committer: Bazaar Package Importer
  • Author(s): Soeren Sonnenburg
  • Date: 2009-08-26 23:50:43 UTC
  • Revision ID: james.westby@ubuntu.com-20090826235043-y9np2j50fd55zsti
Tags: 1.2.0-1
Initial release (Closes: #543766)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh -e
 
2
 
 
3
# called by uscan with '--upstream-version' <version> <file>
 
4
 
 
5
TAR=$3
 
6
 
 
7
# move to directory 'tarballs'
 
8
if [ -r .svn/deb-layout ]; then
 
9
  . .svn/deb-layout
 
10
  mv $TAR $origDir
 
11
  echo "moved $TAR to $origDir"
 
12
fi
 
13