mo/run-spec

16 lines
247 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
# Install or update the specs
if [[ ! -d spec ]]; then
git clone https://github.com/mustache/spec.git spec
else
(
2023-04-08 16:52:22 +00:00
cd spec
git pull
)
fi
# Actually run the specs
node run-spec.js spec/specs/*.json