aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sh/.config
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2024-10-11 14:07:41 -0500
committerToby Vincent <tobyv@tobyvin.dev>2024-10-11 14:07:41 -0500
commit7f0817a02d0f7a1f2c3250a8011e176dd13d9748 (patch)
tree0f573ffbd5467fc37b5d6885eee473cff6c42365 /sh/.config
parent567800e9f5e5623640e3b99d2f22633c1d0a9206 (diff)
fix(nvim): fix checkhealth warnings
Diffstat (limited to 'sh/.config')
-rw-r--r--sh/.config/profile.d/20-ruby.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/.config/profile.d/20-ruby.sh b/sh/.config/profile.d/20-ruby.sh
index 5ed6da2..9d101c4 100644
--- a/sh/.config/profile.d/20-ruby.sh
+++ b/sh/.config/profile.d/20-ruby.sh
@@ -2,6 +2,6 @@
if command -v ruby >/dev/null && command -v gem >/dev/null; then
GEM_USER_DIR="$(ruby -r rubygems -e 'puts Gem.user_dir')"
- [ -d "$GEM_USER_DIR" ] && prepend_path "$GEM_USER_DIR"
+ [ -d "$GEM_USER_DIR"/bin ] && prepend_path "$GEM_USER_DIR"/bin
export PATH
fi