From e1e764418b5c0735efdc1ef6baf90bf991e0a167 Mon Sep 17 00:00:00 2001 From: Jon Rohan Date: Tue, 22 Jan 2013 13:17:06 -0800 Subject: [PATCH] making the packageDirPaths order back to the way it was --- src/app/config.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/config.coffee b/src/app/config.coffee index 2ccc6ff8f..ab1eae901 100644 --- a/src/app/config.coffee +++ b/src/app/config.coffee @@ -22,7 +22,7 @@ module.exports = class Config configDirPath: configDirPath themeDirPaths: [userThemesDirPath, bundledThemesDirPath, vendoredThemesDirPath] - packageDirPaths: [userPackagesDirPath, bundledPackagesDirPath, vendoredPackagesDirPath] + packageDirPaths: [userPackagesDirPath, vendoredPackagesDirPath, bundledPackagesDirPath] defaultSettings: null settings: null