mirror of
https://github.com/VinylDNS/vinyldns
synced 2025-08-22 02:02:14 +00:00
13 lines
182 B
Bash
13 lines
182 B
Bash
|
#!/usr/bin/env bash
|
||
|
DIR=$( cd $(dirname $0) ; pwd -P )
|
||
|
|
||
|
cd $DIR
|
||
|
|
||
|
npm install
|
||
|
|
||
|
npm install grunt -g
|
||
|
grunt default
|
||
|
$DIR/../../bin/add-license-headers.sh -d=$DIR/public/lib -f=js
|
||
|
|
||
|
cd -
|