From 17007e6154a4aa09b6322a174e2b3119aa9cf8db Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 12 Jun 2013 16:23:48 -0700 Subject: [PATCH] Add missing path prefix to method invocation --- 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 806500c2e..fa827493a 100644 --- a/src/app/config.coffee +++ b/src/app/config.coffee @@ -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")