Skip to content

Commit

Permalink
fix(xt-build): command path fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nkrusch committed Jan 8, 2021
1 parent adccce0 commit c0c2e08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ const watch = () => {
gulp.watch([paths.locales_dir + '**/*.json'], locales);
gulp.watch(paths.manifest, copyManifest);
gulp.watch(getArray(paths.icons), copyImages);
gulp.watch(getArray(paths.commands_watch_path), custom_commands);
gulp.watch(getArray(paths.commands_watch_path || ""), custom_commands);
};

const build = gulp.series(
Expand Down

0 comments on commit c0c2e08

Please sign in to comment.