~mmcg069/software-center/bug855666

« back to all changes in this revision

Viewing changes to debian/postrm

  • Committer: Michael Vogt
  • Date: 2009-08-21 14:09:08 UTC
  • Revision ID: michael.vogt@ubuntu.com-20090821140908-3lzaw2kpjrb4bwyu
debian/*: initial debian dir

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
if [ "$1" = "purge" ]; then
 
6
    # remove the cached application data
 
7
    rm -f /var/cache/app-center/*
 
8
fi
 
9
 
 
10
 
 
11
#DEBHELPER#