We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 568b4a2 commit 61b0368Copy full SHA for 61b0368
share/functions/realpath.fish
@@ -7,15 +7,15 @@
7
# However, we only want our builtin if there is no external realpath command.
8
9
if command -sq realpath
10
- function realpath -w realpath -d "print the resolved path [command realpath]"
+ function realpath -d "print the resolved path [command realpath]"
11
command realpath $argv
12
end
13
exit 0
14
15
16
# If there is a HomeBrew installed version of GNU realpath named grealpath use that.
17
if command -sq grealpath
18
- function realpath -w grealpath -d "print the resolved path [command grealpath]"
+ function realpath -d "print the resolved path [command grealpath]"
19
command grealpath $argv
20
21
0 commit comments