Changeset 38 for bootstrapper
- Timestamp:
- Jun 2, 2014, 1:11:14 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
bootstrapper/bootstrap.sh
r37 r38 98 98 if [ $? -ne 0 ]; then 99 99 echo "'gcc' not installed. Please install it and run this script again." 100 echo 0 101 return 100 exit 1 102 101 fi 103 102 … … 105 104 if [ $? -ne 0 ]; then 106 105 echo "'wget' not installed. Please install it and run this script again." 107 echo 0 108 return 106 exit 1 109 107 fi 110 108 … … 112 110 if [ $? -ne 0 ]; then 113 111 echo "'tr' not installed. Please install it and run this script again." 114 echo 0 115 return 112 exit 1 116 113 fi 117 114 … … 126 123 No) 127 124 echo "Aborting." 128 exit 0125 exit 1 129 126 ;; 130 127 esac 131 128 done 132 129 fi 133 134 echo 1135 130 } 136 131 … … 253 248 fi 254 249 else 255 if [ $(checkSetupDeps) -eq 0 ]; then 256 return 257 fi 250 checkSetupDeps 258 251 fi 259 252 setupUser
Note:
See TracChangeset
for help on using the changeset viewer.