module Utils where (+/) :: FilePath -> FilePath -> FilePath path1 +/ path2 | last path1 == '/' = path1 ++ path2 | otherwise = path1 ++ '/' : path2