1
0
forked from GitHub/gf-rgl

fix: drop the leading space

This commit is contained in:
Krasimir Angelov
2022-08-24 13:52:43 +02:00
parent 5645134aa3
commit d953c0f503

View File

@@ -139,7 +139,7 @@ mkInfo = do
getPath s =
let l = last (lines s)
in if take 14 l == "Shared folder:"
then Just (drop 14 l </> "lib")
then Just (drop 15 l </> "lib")
else Nothing
getRGLBuildDir :: Info -> Mode -> FilePath