* Fix 'if' test. It worked, but for other reason as one would expect.

This commit is contained in:
Michael Bienia 2007-06-04 17:21:36 +02:00
parent cfa14b9158
commit 346da7265e

View File

@ -13,7 +13,7 @@ case $OPERATION in
PROCEED=true PROCEED=true
;; ;;
esac esac
if ( $PROCEED == true ) then if [ $PROCEED = true ]; then
shift shift
if [ ! -d $BASE_DIR/${DISTRIBUTION}_result ] if [ ! -d $BASE_DIR/${DISTRIBUTION}_result ]
then mkdir -p $BASE_DIR/${DISTRIBUTION}_result/ then mkdir -p $BASE_DIR/${DISTRIBUTION}_result/