Commit ac7ef465 authored by Ed Reel's avatar Ed Reel

Add crew install buildessential to install.sh

  - Change /usr/local to $CREW_PREFIX
parent d28658a5
...@@ -171,8 +171,8 @@ curl -# -o package.rb $URL/lib/package.rb ...@@ -171,8 +171,8 @@ curl -# -o package.rb $URL/lib/package.rb
curl -# -o package_helpers.rb $URL/lib/package_helpers.rb curl -# -o package_helpers.rb $URL/lib/package_helpers.rb
#Making GCC act like CC (For some npm packages out there) #Making GCC act like CC (For some npm packages out there)
rm -f /usr/local/bin/cc rm -f $CREW_PREFIX/bin/cc
ln -s /usr/local/bin/gcc /usr/local/bin/cc ln -s $CREW_PREFIX/bin/gcc $CREW_PREFIX/bin/cc
#prepare sparse checkout .rb packages directory and do it #prepare sparse checkout .rb packages directory and do it
cd $CREW_LIB_PATH cd $CREW_LIB_PATH
...@@ -185,4 +185,5 @@ echo lib >> .git/info/sparse-checkout ...@@ -185,4 +185,5 @@ echo lib >> .git/info/sparse-checkout
echo crew >> .git/info/sparse-checkout echo crew >> .git/info/sparse-checkout
git fetch origin master git fetch origin master
git reset --hard origin/master git reset --hard origin/master
crew install buildessential
echo "Chromebrew installed successfully and package lists updated." echo "Chromebrew installed successfully and package lists updated."
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment