Created
July 20, 2013 20:19
-
-
Save scottrobertson/6046292 to your computer and use it in GitHub Desktop.
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
#!/bin/sh | |
if [[ -z "$1" ]]; then | |
DIR="criterion" | |
else | |
DIR=$1 | |
fi | |
mkdir $DIR | |
cd $DIR | |
curl -L https://github.com/romhut/criterion/tarball/v1.0-stable | tar zx | |
mv romhut-criterion-*/* ./ | |
rm -rf romhut-criterion-* | |
curl -sS https://getcomposer.org/installer | php | |
php composer.phar install | |
bin/cli install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment