diff --git a/bin/activate b/bin/activate deleted file mode 100644 index 65cb915..0000000 --- a/bin/activate +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash - -# /bin comes before /node_modules/.bin because sometimes I want to -# override the behaviors provided. - -PROJECT_ROOT=`pwd` -PATH="$PROJECT_ROOT/bin:$PROJECT_ROOT/node_modules/.bin:$PATH" -export PATH - -PS1="(`basename \"$PROJECT_ROOT\"`)$PS1" -export PS1 - diff --git a/bin/gruntc b/bin/gruntc deleted file mode 100755 index 3279758..0000000 --- a/bin/gruntc +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh -PROJECTPATH=$(dirname ${BASH_SOURCE})/.. -PROJECTPATH="`cd ${PROJECTPATH}; pwd`" -SRC="$PROJECTPATH/grunt.coffee" -DST="$PROJECTPATH/.grunt.js" - -if [ ! -f "$DST" -o "$SRC" -nt "$DST" ]; then - echo "Rebuilding $DST..." - coffee -cp $SRC > $DST -fi - -grunt --config $DST $*