mirror of
https://github.com/danbulant/markdown-wasm
synced 2026-06-12 11:10:59 +00:00
7 lines
105 B
Bash
Executable file
7 lines
105 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
cd "$(dirname "$0")"
|
|
|
|
for f in issue*.js; do
|
|
node "$f" "$@"
|
|
done
|