Not using grunt; don't need these.

This commit is contained in:
Elf M. Sternberg 2013-04-17 10:18:50 -07:00
parent b604926aee
commit 80c3c6f834
2 changed files with 0 additions and 24 deletions

View File

@ -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

View File

@ -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 $*