Not using grunt; don't need these.
This commit is contained in:
parent
b604926aee
commit
80c3c6f834
12
bin/activate
12
bin/activate
|
@ -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
|
||||
|
12
bin/gruntc
12
bin/gruntc
|
@ -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 $*
|
Loading…
Reference in New Issue