Show
Ignore:
Timestamp:
04/25/08 16:48:48 (5 months ago)
Author:
pmoura
Message:

Updated the Debian installer package shell scripts for POSIX compliance, removing dependencies on bash shell features.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/scripts/debian/prerm

    r4102 r4227  
    1 #!/bin/bash 
     1#!/bin/sh 
    22 
    33## ================================================================ 
     
    1111echo "Uninstalling and de-registering Logtalk online documentation..." 
    1212 
    13 if [ "$1" = remove -o "$1" = upgrade ]; then 
    14     if which install-docs >/dev/null 2>&1; then 
     13if [ "$1" = "remove" ] || [ "$1" = "upgrade" ] ; then 
     14    if which install-docs > /dev/null 2>&1 ; then 
    1515        install-docs -r logtalk-docs 
    1616    fi