Skip to content

Commit

Permalink
Fix outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
coturiv committed Oct 13, 2020
1 parent 2b0dad4 commit 1a591b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6805,7 +6805,7 @@ function logInstalledInfo() {
return __awaiter(this, void 0, void 0, function* () {
core.info('Cordova/Ionic environment has been setup successfully.');
core.info((yield exec2('ionic info')));
core.info((yield exec2('cordova -v')));
core.info(`Cordova: ${yield exec2('cordova -v')}`);
});
}
exports.logInstalledInfo = logInstalledInfo;
Expand Down
2 changes: 1 addition & 1 deletion src/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export async function logInstalledInfo(): Promise<void> {
core.info('Cordova/Ionic environment has been setup successfully.')

core.info((await exec2('ionic info')) as string)
core.info((await exec2('cordova -v')) as string)
core.info(`Cordova: ${await exec2('cordova -v')}`)
}

/**
Expand Down

0 comments on commit 1a591b8

Please sign in to comment.