Skip to content

Commit

Permalink
Use realpath instead of readlink
Browse files Browse the repository at this point in the history
  • Loading branch information
klane committed Aug 27, 2021
1 parent e7a99bf commit 3d3c367
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/marks.fish
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function marks
else
set -l output ""
for mark_name in $mark_list
set -l real_path (readlink $MARKPATH/$mark_name)
set -l real_path (realpath $MARKPATH/$mark_name)
set output "$output$mark_name -> $real_path"\n
end
echo $output | column -t
Expand Down

0 comments on commit 3d3c367

Please sign in to comment.