From de1ff9f24a2f411fcf10e3f17e4382cf78ef3ac8 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Fri, 22 Jun 2012 12:41:50 -0700 Subject: [PATCH] Made more code portable to Windows --- main.d | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/main.d b/main.d index 3d9aed3..664c43f 100644 --- a/main.d +++ b/main.d @@ -83,16 +83,16 @@ string findAbsPath(string[] dirs, string moduleName) // For file names if (endsWith(moduleName, ".d") || endsWith(moduleName, ".di")) { - if (startsWith(moduleName, "/")) + if (isAbsolute(moduleName)) return moduleName; else - return getcwd() ~ "/" ~ moduleName; + return buildPath(getcwd(), moduleName); } // Try to find the file name from a module name like "std.stdio" foreach(dir; dirs) { - string fileLocation = dir ~ "/" ~ replace(moduleName, ".", "/"); + string fileLocation = buildPath(dir, replace(moduleName, ".", dirSeparator)); string dfile = fileLocation ~ ".d"; if (exists(dfile) && isFile(dfile)) { @@ -109,14 +109,14 @@ string findAbsPath(string[] dirs, string moduleName) string[] loadConfig() { - string path = expandTilde("~/.dscanner"); + string path = expandTilde("~" ~ dirSeparator ~ ".dscanner"); string[] dirs; if (exists(path)) { auto f = File(path, "r"); scope(exit) f.close(); - auto trimRegex = ctRegex!("\\s*$"); + auto trimRegex = ctRegex!(`\s*$`); foreach(string line; lines(f)) { dirs ~= replace(line, trimRegex, "");