1
0
mirror of https://github.com/adobe/brackets.git synced 2024-11-20 18:02:54 +01:00

reorganizing extension directories again

This commit is contained in:
Joel Brandt 2012-03-29 10:41:40 -07:00
parent 8415393995
commit 4212d6816e
8 changed files with 4 additions and 4 deletions

4
.gitignore vendored
View File

@ -4,5 +4,5 @@ src/brackets.min.css
# ignore everything in the user extension directory EXCEPT the README
# (so that the directory is non-empty and can be in git)
src/extensions-user/*
!src/extensions-user/README
src/extensions/user/*
!src/extensions/user/README

View File

@ -29,7 +29,7 @@ define(function (coreRequire, exports, module) {
// load extensions
extensionRequire = brackets.libRequire.config({
context: extensionDirs[i],
baseUrl: "extensions-default/" + extensionDirs[i]
baseUrl: "extensions/default/" + extensionDirs[i]
});
console.log("starting to load " + extensionDirs[i]);
@ -40,7 +40,7 @@ define(function (coreRequire, exports, module) {
}
// TODO: get the directories from NativeFileSystem rather than the low-level filesystem
var extensionPath = window.location.pathname.substr(0, window.location.pathname.lastIndexOf("/")) + "/extensions-default";
var extensionPath = window.location.pathname.substr(0, window.location.pathname.lastIndexOf("/")) + "/extensions/default";
console.log("the extension path is: " + extensionPath);
function startLoading() {

View File

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB