Skip to content

Commit 4038f66

Browse files
authored
Merge pull request #82 from cvsvensson/master
use joinpath instead of hardcoded path delimiter
2 parents 7fcba96 + ea44e72 commit 4038f66

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)