Skip to content

Commit 98c6ab2

Browse files
authored
Merge pull request #51 from xtqqczze/patch-1
Hide `true` and `false` from the playground command list
2 parents c037b45 + f25d426 commit 98c6ab2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
# HIDDEN_CMDS: utilities that ship in the binary but we don't want to
144144
# advertise in the playground (e.g. `yes` produces infinite output
145145
# that just spams the terminal).
146-
HIDDEN_CMDS='^(yes)$'
146+
HIDDEN_CMDS='^(false|true|yes)$'
147147
commands=$(sed -n '/^feat_wasm = \[/,/^\]/p' Cargo.toml \
148148
| grep -oE '"[a-zA-Z0-9_]+"' | tr -d '"' \
149149
| sort -u | grep -vE "$HIDDEN_CMDS" | paste -sd, -)

0 commit comments

Comments
 (0)