10 lines
126 B
Bash
Executable file
10 lines
126 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
ROOTDIR="$(cd "$(dirname "$0")/.." || exit 1 ; pwd)"
|
|
|
|
cd "$ROOTDIR"
|
|
|
|
npm install
|
|
|
|
docker pull vitr/casperjs
|