Skip to content

Commit ea44e72

Browse files
authored
use joinpath instead of hardcoded path delimiter
1 parent 7fcba96 commit ea44e72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MathLink.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export @W_str, @W_cmd, weval
88
###Checking that the deps.jl file exists. And throwing a readable error if it does not!
99

1010
FilePath=@__DIR__
11-
FilePath=FilePath[1:end-4]*"/deps/deps.jl"
11+
FilePath=joinpath(FilePath[1:end-4], "deps", "deps.jl")
1212

1313

1414
#if isfile("../deps/deps.jl")

0 commit comments

Comments
 (0)