From b25d4288fc1d86a9505ba6dd9076b93dbe8021e6 Mon Sep 17 00:00:00 2001 From: Nick Krichevsky Date: Thu, 28 Jun 2018 18:41:52 -0400 Subject: [PATCH] Add trailing slashes to paths in Gulpfile --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index a74b0dd..5c11e12 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -22,8 +22,8 @@ const TS_ENTRYPOINTS = ["browser-action.ts"]; const JS_OUT_DIR = "spectabular/js/"; const SASS_SRC_DIR = "src/scss/"; const CSS_OUT_DIR = "spectabular/css/"; -const TWIG_SRC_DIR = "src/twig"; -const TWIG_OUT_DIR = "spectabular/twig"; +const TWIG_SRC_DIR = "src/twig/"; +const TWIG_OUT_DIR = "spectabular/twig/"; let isProdBuild = yargs.argv.hasOwnProperty("prod");