From 652de90c06aa8a696a2fedce316ddc686d01bd15 Mon Sep 17 00:00:00 2001 From: Gautier P Date: Sat, 26 Sep 2020 08:39:46 +0200 Subject: [PATCH] Remove unused variable --- gulpfile.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 451da95..99a9d61 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -206,7 +206,6 @@ gulp.task('inject', function() { }); var pkg = require('./package.json'); -var tags = { patch: 'patch', minor: 'minor', major: 'major' }; var nextVersion; var ghToken; @@ -220,7 +219,7 @@ gulp.task('release:init', function(cb) { } ghToken = gutil.env.token; if (!ghToken) { - return cb(new Error('--token is required (github personnal access token')); + return cb(new Error('--token is required (github personal access token')); } if (ghToken.length != 40) { return cb(new Error('--token length must be 40'));