diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2016-12-30 02:32:15 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2016-12-30 02:32:15 +0900 |
| commit | 774e5424249e4636adfbe8bebce92e0c71e528ae (patch) | |
| tree | e26deb39b213827ff07ab916c6f3e168d17b8df6 /src | |
| parent | Update log message (diff) | |
| download | sharkey-774e5424249e4636adfbe8bebce92e0c71e528ae.tar.gz sharkey-774e5424249e4636adfbe8bebce92e0c71e528ae.tar.bz2 sharkey-774e5424249e4636adfbe8bebce92e0c71e528ae.zip | |
Add missing semicolon
Diffstat (limited to 'src')
| -rw-r--r-- | src/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.ts b/src/index.ts index 3d71d9d6c2..490e80f5c7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -148,7 +148,7 @@ async function init(): Promise<State> { 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'); |