12 lines
182 B
Bash
12 lines
182 B
Bash
|
#/usr/bin/env bash
|
||
|
|
||
|
# this script has to be executed from the 'servant-client' directory
|
||
|
|
||
|
set -o errexit
|
||
|
|
||
|
npm install xhr2
|
||
|
|
||
|
export STACK_YAML=stack-ghcjs.yaml
|
||
|
stack setup
|
||
|
stack test
|