From 774e5424249e4636adfbe8bebce92e0c71e528ae Mon Sep 17 00:00:00 2001 From: Aya Morisawa Date: Fri, 30 Dec 2016 02:32:15 +0900 Subject: [PATCH] Add missing semicolon --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 3d71d9d6c..490e80f5c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -148,7 +148,7 @@ async function init(): Promise { lastCommitLogger.info(`${shortHash}${chalk.gray(hash.substr(shortHash.length))}`); lastCommitLogger.info(`${commit.subject} ${chalk.green(`(${commitDate} ${commitTime})`)} ${chalk.blue(`<${commit.author.name}>`)}`); } catch (e) { - lastCommitLogger.info('No commit information found') + lastCommitLogger.info('No commit information found'); } let envLogger = new Logger('Env');