mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Also introduced a new mechanism for ensuring the --help examples in the documentation reflect the current output of the --help commands, via a new update-docs-help.sh script. Closes #336
4 lines
315 B
Bash
Executable file
4 lines
315 B
Bash
Executable file
#!/bin/bash
|
|
echo $'$ datasette serve --help\n\n' "$(datasette serve --help)" > docs/datasette-serve-help.txt
|
|
echo $'$ datasette publish --help\n\n' "$(datasette publish --help)" > docs/datasette-publish-help.txt
|
|
echo $'$ datasette package --help\n\n' "$(datasette package --help)" > docs/datasette-package-help.txt
|