forked from WebAssembly/WASI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repo_docs.sh
executable file
·17 lines (17 loc) · 939 Bytes
/
repo_docs.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env bash
set -ex
cd $(dirname $(realpath $0))/witx-cli
cargo run -- docs $1 ../../phases/snapshot/witx/wasi_snapshot_preview1.witx --output ../../phases/snapshot/docs.md
cargo run -- docs $1 ../../phases/old/snapshot_0/witx/wasi_unstable.witx --output ../../phases/old/snapshot_0/docs.md
cargo run -- docs $1 \
../../phases/ephemeral/witx/wasi_ephemeral_args.witx \
../../phases/ephemeral/witx/wasi_ephemeral_clock.witx \
../../phases/ephemeral/witx/wasi_ephemeral_environ.witx \
../../phases/ephemeral/witx/wasi_ephemeral_fd.witx \
../../phases/ephemeral/witx/wasi_ephemeral_path.witx \
../../phases/ephemeral/witx/wasi_ephemeral_poll.witx \
../../phases/ephemeral/witx/wasi_ephemeral_proc.witx \
../../phases/ephemeral/witx/wasi_ephemeral_random.witx \
../../phases/ephemeral/witx/wasi_ephemeral_sched.witx \
../../phases/ephemeral/witx/wasi_ephemeral_sock.witx \
--output ../../phases/ephemeral/docs.md