Skip to content

Commit

Permalink
Convert bundle install steps to function
Browse files Browse the repository at this point in the history
  • Loading branch information
0xmachos committed Mar 9, 2018
1 parent 2d3010d commit 1e3b254
Showing 1 changed file with 18 additions and 10 deletions.
28 changes: 18 additions & 10 deletions install
Original file line number Diff line number Diff line change
Expand Up @@ -119,15 +119,23 @@ else
gem install bundler
fi

echo "Installing required Ruby gems..."
bundle install --without test development
}


install_beef () {

echo "Installing required Ruby gems..."
bundle install --without test development

echo
echo "=========================================="
echo
info "Install completed successfully!"
info "Run './beef' to launch BeEF"
echo
echo "=========================================="
echo
}


echo
echo "=========================================="
echo
info "Install completed successfully!"
info "Run './beef' to launch BeEF"
echo
echo "=========================================="
echo

0 comments on commit 1e3b254

Please sign in to comment.