Skip to content

Commit

Permalink
Add file to run rake isolate quickly
Browse files Browse the repository at this point in the history
  • Loading branch information
zzz0072 committed Apr 9, 2015
1 parent 2c01160 commit fcf9f5f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions utils/rake_post.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/bin/bash -x
if [ ! -f "$1" ] ; then
"No such file"
exit
fi

SCRIPT_FILE="/tmp/run.sh"

cat << EOF_ > $SCRIPT_FILE
#!/bin/bash
rake isolate['$1']
rake generate
rake preview
rake integrate
rake generate
EOF_

chmod +x $SCRIPT_FILE
bash -x $SCRIPT_FILE

0 comments on commit fcf9f5f

Please sign in to comment.