mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-28 06:27:02 +00:00
Merge branch 'loader' of git@github.com:280north/cappuccino into loader
This commit is contained in:
@@ -15,7 +15,7 @@ function importablePath(/*String*/ aPath, /*BOOL*/ isLocal, /*String*/ aCWD)
|
||||
return aPath;
|
||||
|
||||
if (isLocal)
|
||||
aPath = FILE.join(aCWD, aPath);
|
||||
aPath = FILE.normal(FILE.join(aCWD, aPath));
|
||||
|
||||
return aPath;
|
||||
}
|
||||
|
||||
@@ -65,9 +65,9 @@ require("file");
|
||||
if (resultsCount > 0 && results[resultsCount - 1] !== "..")
|
||||
results.pop();
|
||||
|
||||
// If we are at the beginning and this isn't a root listing,
|
||||
// add it since it makes sense for relative paths.
|
||||
else if (!isRoot && resultsCount < 0)
|
||||
// If this isn't a root listing, and we are preceded by only ..'s, or
|
||||
// nothing at all, then add it since it makes sense for relative paths.
|
||||
else if (!isRoot && resultsCount === 0 || results[resultsCount - 1] === "..")
|
||||
results.push(component);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user