~ubuntu-branches/ubuntu/precise/kde-l10n-ro/precise

« back to all changes in this revision

Viewing changes to debian/build-l10n.sh

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-05-29 22:51:03 UTC
  • mfrom: (1.2.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100529225103-swveup60wyg66s0a
Tags: 4:4.4.80-0ubuntu1
New upstream beta release

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
esac
78
78
 
79
79
if [ -e build ]; then
 
80
  echo "A already existing build/ directory was found, which indicates that there was a build done earlier."
80
81
  echo "Do you REALLY REALLY want to mess with the current build dir? (y/n)"
 
82
  echo "Note: you can also run this script with -ncd to preserve only the tar.bz2 files from build/."
81
83
  read -e reply
82
84
  if [[ $reply != "y" ]]; then
83
85
    echo "bye!"
125
127
if [ $clean_dld -ne 0 ]; then
126
128
  if [[ "$subset" == "" ]]; then
127
129
    # get all
128
 
    $GET/stable/${KDEVERSION}/src/kde-l10n/kde-l10n-*.tar.bz2 .
 
130
    $GET/unstable/${KDEVERSION}/src/kde-l10n/kde-l10n-*.tar.bz2 .
129
131
  else
130
132
    # only get subset
131
133
    for pkg in $subset; do
132
 
      $GET/stable/${KDEVERSION}/src/kde-l10n/kde-l10n-$pkg-*.tar.bz2 .
 
134
      $GET/unstable/${KDEVERSION}/src/kde-l10n/kde-l10n-$pkg-*.tar.bz2 .
133
135
    done
134
136
  fi
135
137
fi