We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f572dba commit a535091Copy full SHA for a535091
1 file changed
bin/rbenv-doctor
@@ -17,7 +17,7 @@ command-list() {
17
deduplicate-paths() {
18
local path
19
while read -r path; do
20
- readlink -f "$path" || printf "%s\n" "$path"
+ readlink -f "$path" 2>/dev/null || printf "%s\n" "$path"
21
done | uniq
22
}
23
0 commit comments