From a9632f4a4450765782ac9e33310deb2e3c8eac6e Mon Sep 17 00:00:00 2001 From: alext Date: Tue, 2 Jan 2018 14:24:30 +0100 Subject: [PATCH] Use the config-sample.php instead of the config.php when building the destination file. --- gulpfile.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 5fe0241b..7a939a84 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -47,8 +47,7 @@ gulp.task('build', function(done) { ]); fs.copySync('src', '.tmp-package'); - fs.copySync('.tmp-package/config-sample.php', '.tmp-package/config.php'); - fs.removeSync('.tmp-package/config-sample.php'); + fs.removeSync('.tmp-package/config.php'); fs.copySync('CHANGELOG.md', '.tmp-package/CHANGELOG.md'); fs.copySync('README.md', '.tmp-package/README.md'); fs.copySync('LICENSE', '.tmp-package/LICENSE');