Zine

open source content publishing system


source: scripts/_uninstall-posix.sh @ 711:7eae2cba8191

Revision 711:7eae2cba8191, 231 bytes checked in by mitsuhiko, 3 years ago (diff)

New installer for POSIX

Line 
1#!/bin/bash
2# This script uninstalls zine from PREFIX which defaults
3# to /usr.
4
5if [ x$PREFIX == x ]; then
6  PREFIX=/usr
7fi
8
9echo "Uninstalling Zine from $PREFIX"
10rm -rf $PREFIX/lib/zine
11rm -rf $PREFIX/share/zine
12echo "All done."
Note: See TracBrowser for help on using the repository browser.