From d74f8ac1dc93de071df10aaaba5cca9c4035aaf8 Mon Sep 17 00:00:00 2001 From: Guillermo Rauch Date: Fri, 8 Jul 2016 14:25:45 -0700 Subject: [PATCH] plugins: change location for local modules --- plugins.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins.js b/plugins.js index a4e1a8b9..9fa0b400 100644 --- a/plugins.js +++ b/plugins.js @@ -15,7 +15,7 @@ const cache = new Config(); // modules path const path = resolve(homedir(), '.hyperterm_modules'); -const localPath = resolve(homedir(), '.hyperterm_local_modules'); +const localPath = resolve(homedir(), '.hyperterm_modules', 'local'); // init plugin directories if not present mkdirpSync(path);