We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 583628c commit 2e06ad4Copy full SHA for 2e06ad4
2 files changed
.github/workflows/ci.yml
@@ -27,7 +27,7 @@ jobs:
27
28
- name: ShellCheck
29
run: |
30
- find bin/ setup.sh start.sh -type f \( -name '*.sh' -o -name 'baudbot-safe-bash' -o -name 'baudbot-docker' \) \
+ find bin/ setup.sh start.sh install.sh -type f \( -name '*.sh' -o -name 'baudbot-safe-bash' -o -name 'baudbot-docker' -o -name 'baudbot' \) \
31
| xargs shellcheck -s bash -S warning
32
33
test:
bin/doctor.sh
@@ -6,13 +6,10 @@
6
7
set -euo pipefail
8
9
-FIX=false
10
for arg in "$@"; do
11
case "$arg" in
12
- --fix) FIX=true ;;
13
-h|--help)
14
- echo "Usage: baudbot doctor [--fix]"
15
- echo " --fix Attempt to fix issues (requires root)"
+ echo "Usage: baudbot doctor"
16
exit 0
17
;;
18
esac
0 commit comments