mirror of
https://github.com/danbulant/markdown-wasm
synced 2026-05-19 04:18:38 +00:00
11 lines
134 B
Bash
Executable file
11 lines
134 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
cd "$(dirname "$0")"
|
|
|
|
node spec/spec.js &
|
|
|
|
for f in issue*.js; do
|
|
node "$f" "$@" &
|
|
done
|
|
|
|
wait
|