Skip to content

Commit fb08734

Browse files
committed
arch: fix shellcheck tilde-in-quotes warning
1 parent 4389e19 commit fb08734

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

bin/doctor.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ ADMIN_HOME=$(getent passwd "$ADMIN_USER" | cut -d: -f6 2>/dev/null || echo "")
7979
ADMIN_CONFIG="$ADMIN_HOME/.baudbot/.env"
8080

8181
if [ -n "$ADMIN_HOME" ] && [ -f "$ADMIN_CONFIG" ]; then
82-
pass "~/.baudbot/.env exists ($ADMIN_CONFIG)"
82+
pass "admin config exists ($ADMIN_CONFIG)"
8383
else
84-
warn "~/.baudbot/.env not found (run: baudbot config)"
84+
warn "admin config not found at $ADMIN_CONFIG (run: baudbot config)"
8585
fi
8686

8787
echo ""

0 commit comments

Comments
 (0)