Files
ReachableCEO 6bb05c64c7 Add "mo" from "ssh://git@git.knownelement.com:29418/ExternalVendorCode/mo.git@master"
git-vendor-name: mo
git-vendor-dir: vendor/git@git.knownelement.com/29418/ExternalVendorCode/mo
git-vendor-repository: ssh://git@git.knownelement.com:29418/ExternalVendorCode/mo.git
git-vendor-ref: master
2025-07-14 12:09:45 -05:00

23 lines
510 B
Bash
Executable File

#!/usr/bin/env bash
# Install or update the specs
if [[ ! -d spec ]]; then
git clone https://github.com/mustache/spec.git spec
else
(
cd spec
git pull
)
fi
if [[ "$BASH_VERSION" == 3.* ]]; then
echo "WARNING! Specs assume you are using a version of Bash with associative arrays!"
fi
# Actually run the specs
node run-spec.js spec/specs/*.json
if [[ "$BASH_VERSION" == 3.* ]]; then
echo "Some tests may have failed because they assume Bash supports associative arays"
fi