Skip to content

Commit 0b65ee2

Browse files
author
fernandogelin
committed
Merge branch 'develop'
2 parents bf6727c + 49d910b commit 0b65ee2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

deps/build.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ function symlink_user_bin(path_::AbstractString)
1313
@warn bin_path
1414
run(`setx path "%path%;$bin_path"`)
1515
else
16-
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_"
16+
ln = "/usr/local/bin/$exec"
17+
rm(ln, force=true)
18+
symlink(path_, ln)
19+
@warn "Created symlink: $ln -> $path_"
2020
end
2121
end
2222

0 commit comments

Comments
 (0)