Changeset 1490 in MondoRescue for branches/2.2.4/tools/livwww


Ignore:
Timestamp:
Jun 6, 2007, 4:29:17 PM (17 years ago)
Author:
Bruno Cornec
Message:

Stricter POSIX conformance for all shell scripts (== replaced by = in compare)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.4/tools/livwww

    r1011 r1490  
    3333dname=`dirname $0`
    3434prem=`echo $dname |cut -c1`
    35 if [ ${prem} == "/" ]; then
     35if [ ${prem} = "/" ]; then
    3636        export TOOLHOME=$dname
    3737else
     
    9191$TOOLHOME/mknewshtml.pl $LOCALDIR
    9292
    93 if [ _"$1" == _"" ]; then
     93if [ _"$1" = _"" ]; then
    9494        exit 0
    9595else
    96     if [ _"$1" == _"test" ]; then
     96    if [ _"$1" = _"test" ]; then
    9797        DESTDIR=$TESTDIR
    9898    else
Note: See TracChangeset for help on using the changeset viewer.