~ubuntu-branches/ubuntu/saucy/python-docutils/saucy-proposed

« back to all changes in this revision

Viewing changes to debian/python3-docutils.prerm

  • Committer: Bazaar Package Importer
  • Author(s): Jakub Wilk
  • Date: 2011-08-07 23:24:56 UTC
  • mfrom: (11.1.2 experimental)
  • Revision ID: james.westby@ubuntu.com-20110807232456-ikquearlmix8hkp1
Tags: 0.7-4
Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
if [ "$1" = remove ] || [ "$1" = deconfigure ]
 
6
then
 
7
        for exe in /usr/share/docutils/scripts/python3/*
 
8
        do
 
9
                update-alternatives --remove ${exe##*/} $exe
 
10
        done
 
11
fi
 
12
 
 
13
#DEBHELPER#