Changeset 38 for bootstrapper


Ignore:
Timestamp:
Jun 2, 2014, 1:11:14 PM (10 years ago)
Author:
alloc
Message:

Bootstrapper

File:
1 edited

Legend:

Unmodified
Added
Removed
  • bootstrapper/bootstrap.sh

    r37 r38  
    9898        if [ $? -ne 0 ]; then
    9999                echo "'gcc' not installed. Please install it and run this script again."
    100                 echo 0
    101                 return
     100                exit 1
    102101        fi
    103102
     
    105104        if [ $? -ne 0 ]; then
    106105                echo "'wget' not installed. Please install it and run this script again."
    107                 echo 0
    108                 return
     106                exit 1
    109107        fi
    110108
     
    112110        if [ $? -ne 0 ]; then
    113111                echo "'tr' not installed. Please install it and run this script again."
    114                 echo 0
    115                 return
     112                exit 1
    116113        fi
    117114       
     
    126123                                No)
    127124                                        echo "Aborting."
    128                                         exit 0
     125                                        exit 1
    129126                                        ;;
    130127                        esac
    131128                done
    132129        fi
    133 
    134         echo 1
    135130}
    136131
     
    253248                fi
    254249        else
    255                 if [ $(checkSetupDeps) -eq 0 ]; then
    256                         return
    257                 fi
     250                checkSetupDeps
    258251        fi
    259252        setupUser
Note: See TracChangeset for help on using the changeset viewer.