Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt-get update && sudo apt-get install -y mandoc
- shell: bash
run: ./scripts/check-man-text.sh

Expand Down
4 changes: 2 additions & 2 deletions man/tx.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.Dd March 15, 2026
.Dd
.Dt TX 1
.Os
.Os TexOps
.Sh NAME
.Nm tx
.Nd TexOps CLI to build LaTeX documents in the cloud
Expand Down
2 changes: 1 addition & 1 deletion man/tx.1.txt
Original file line number Diff line number Diff line change
Expand Up @@ -317,4 +317,4 @@ EXAMPLES
SEE ALSO
gitignore(5)

macOS 15.7 March 15, 2026 macOS 15.7
TexOps TexOps
2 changes: 1 addition & 1 deletion scripts/check-man-text.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ cd "$ROOT_DIR"

make man-text

if ! git diff --stat --exit-code man/tx.1.txt; then
if ! git diff --exit-code man/tx.1.txt; then
echo ""
echo "man/tx.1.txt is out of date."
echo "Please run 'make man-text' locally and commit the changes."
Expand Down
Loading