Skip to content

Commit

Permalink
indent test
Browse files Browse the repository at this point in the history
  • Loading branch information
ddollar committed Mar 23, 2012
1 parent d5048b1 commit f577789
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions bin/compile
@@ -1,5 +1,13 @@
#!/bin/sh
#!/usr/bin/env bash

function indent() {
c='s/^/ /'
case $(uname) in
Darwin) sed -l "$c";;
*) sed -u "$c";;
esac
}

cd $1
echo "-----> Running bin/test"
bin/test
bin/test | indent

0 comments on commit f577789

Please sign in to comment.