Skip to content

Commit b53b70f

Browse files
committed
[bot:cli-maxxing] fix SC2088 tilde-in-quotes in uninstall.sh
shellcheck flagged uninstall.sh:469,471 — tilde doesn't expand in quotes. These were display-only strings, swapped ~/ → \$HOME/ so the message renders "$HOME/.local/bin" instead of a literal "~".
1 parent cf7af98 commit b53b70f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

uninstall.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -466,9 +466,9 @@ uninstall_step_1() {
466466
fi
467467

468468
if [ "$rc_localbin_removed" -gt 0 ]; then
469-
success "~/.local/bin PATH entry removed from $rc_localbin_removed rc file(s)"
469+
success "\$HOME/.local/bin PATH entry removed from $rc_localbin_removed rc file(s)"
470470
else
471-
skip "~/.local/bin PATH entry (not found in any rc file)"
471+
skip "\$HOME/.local/bin PATH entry (not found in any rc file)"
472472
fi
473473

474474
if [ "$rc_ghostty_removed" -gt 0 ]; then

0 commit comments

Comments
 (0)