even better

This commit is contained in:
Félix Saparelli 2024-04-21 02:02:57 +12:00
parent 0ef87821f2
commit 953fa89dd9
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -200,10 +200,10 @@ jobs:
run: ${{ matrix.cross && 'cross' || 'cargo' }} build --package watchexec-cli --release --locked --target ${{ matrix.target }}
- name: Make manpage
run: cargo run -p watchexec-cli ${{ matrix.cross && '' || '--release' }} -- --manual > doc/watchexec.1
run: cargo run -p watchexec-cli ${{ matrix.cross && '' || '--release' }} --locked -- --manual > doc/watchexec.1
- name: Make completions
run: bin/completions ${{ matrix.cross && '' || '--release' }}
run: bin/completions ${{ matrix.cross && '' || '--release' }} --locked
- name: Package
shell: bash