Add missing path prefix to method invocation

This commit is contained in:
Kevin Sawicki
2013-06-12 16:23:48 -07:00
parent 82013b1970
commit 17007e6154

View File

@@ -12,7 +12,7 @@ bundledPackagesDirPath = path.join(resourcePath, "src/packages")
nodeModulesDirPath = path.join(resourcePath, "node_modules")
bundledThemesDirPath = path.join(resourcePath, "themes")
vendoredPackagesDirPath = path.join(resourcePath, "vendor/packages")
vendoredThemesDirPath = .join(resourcePath, "vendor/themes")
vendoredThemesDirPath = path.join(resourcePath, "vendor/themes")
userThemesDirPath = path.join(configDirPath, "themes")
userPackagesDirPath = path.join(configDirPath, "packages")
userStoragePath = path.join(configDirPath, ".storage")