Skip to content

Instantly share code, notes, and snippets.

@scottrobertson
Created July 20, 2013 20:19
Show Gist options
  • Save scottrobertson/6046292 to your computer and use it in GitHub Desktop.
Save scottrobertson/6046292 to your computer and use it in GitHub Desktop.
#!/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