From 80c3c6f83440857ccd11373c20907f7edcf42d7c Mon Sep 17 00:00:00 2001 From: "Elf M. Sternberg" Date: Wed, 17 Apr 2013 10:18:50 -0700 Subject: [PATCH] Not using grunt; don't need these. --- bin/activate | 12 ------------ bin/gruntc | 12 ------------ 2 files changed, 24 deletions(-) delete mode 100644 bin/activate delete mode 100755 bin/gruntc 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 $*