10 lines
275 B
Bash
10 lines
275 B
Bash
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
# Runs the full suite of tests against LinkedIn DustJS and duster to compare the result
|
||
|
set -euo pipefail
|
||
|
IFS=$'\n\t'
|
||
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||
|
|
||
|
cd "$DIR/../"
|
||
|
docker build -t duster . && docker run --rm -i -t duster "${@}"
|