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.
2 parents ec04ae5 + 11592bf commit bf6727cCopy full SHA for bf6727c
deps/build.jl
@@ -13,7 +13,9 @@ function symlink_user_bin(path_::AbstractString)
13
@warn bin_path
14
run(`setx path "%path%;$bin_path"`)
15
else
16
- symlink(path_, "/usr/local/bin/$exec")
+ bin_exec_path = "/usr/local/bin/$exec"
17
+ rm(bin_exec_path, force=true)
18
+ symlink(path_, bin_exec_path)
19
@warn "Created symlink: /usr/local/bin/viva -> $path_"
20
end
21
0 commit comments