Last active
December 31, 2016 11:16
-
-
Save mrjosh/0f122a73502106f9e2df3f9cde56e818 to your computer and use it in GitHub Desktop.
Codeception installer bash script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if which codecept; then | |
echo ">>> You have already codeception <<<" | |
else | |
if which composer; then | |
composer global require codeception/codeception | |
else | |
sudo curl -LsS http://codeception.com/codecept.phar -o /usr/local/bin/codecept | |
fi | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment