We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55a17ef commit 34eef04Copy full SHA for 34eef04
.github/workflows/main.yml
@@ -68,8 +68,9 @@ jobs:
68
runs-on: ubuntu-latest
69
container:
70
image: ghcr.io/dtrx-py/dtrx:2025-11-03
71
+ # we need tty for the test for password zip noninteractive prompt
72
# we need to be root for checkout to work without pain
- options: "--user=root"
73
+ options: "-t --user=root"
74
75
strategy:
76
matrix:
tools/gen-manpage.sh
@@ -1,6 +1,6 @@
1
#!/usr/bin/env bash
2
# Small script to run rst2man.py and error if there's any output
3
-set -e
+set -ex
4
5
# rst2man.py doesn't return non-zero on warnings or errors 🤦
6
# instead, if it outputs anything on stdout or stderr, assume it's some abnormal
0 commit comments