From 4753a4ff827c600cec0466fc68cf09409d10d538 Mon Sep 17 00:00:00 2001 From: PhilKunz Date: Wed, 23 Mar 2016 15:23:04 +0100 Subject: [PATCH] fix small error --- dist/npmts.options.js | 2 +- ts/npmts.options.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/npmts.options.js b/dist/npmts.options.js index 17ec102..0e29491 100644 --- a/dist/npmts.options.js +++ b/dist/npmts.options.js @@ -2,7 +2,7 @@ /// var plugins = require("./npmts.plugins"); exports.isRelease = function () { - if (plugins.smartci.check.isCi() && plugins.smartci.isTaggedCommit()) { + if (plugins.smartci.check.isCi() && plugins.smartci.check.isTaggedCommit()) { return true; } else { diff --git a/ts/npmts.options.ts b/ts/npmts.options.ts index b3a0ff3..dfcde36 100644 --- a/ts/npmts.options.ts +++ b/ts/npmts.options.ts @@ -2,7 +2,7 @@ import plugins = require("./npmts.plugins"); export let isRelease = function():boolean { - if (plugins.smartci.check.isCi() && plugins.smartci.isTaggedCommit()){ + if (plugins.smartci.check.isCi() && plugins.smartci.check.isTaggedCommit()){ return true; } else { return false;