Skip to content

Commit e8ef630

Browse files
committed
Fix eslint
1 parent cb4fcb5 commit e8ef630

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/project/nativeScriptCli.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ export class NativeScriptCli {
2727
public executeGetVersion(): string {
2828
try {
2929
const versionOutput = this.executeSync(['--version'], undefined);
30-
return this.getVersionFromCLIOutput(versionOutput)
30+
31+
return this.getVersionFromCLIOutput(versionOutput);
3132
} catch (e) {
3233
this._logger.log(e);
3334

@@ -64,6 +65,7 @@ export class NativeScriptCli {
6465

6566
private getVersionFromCLIOutput(commandOutput: string): string {
6667
const matches = commandOutput.match(NativeScriptCli.CLI_OUTPUT_VERSION_REGEXP);
68+
6769
return matches && matches[0];
6870
}
6971
}

0 commit comments

Comments
 (0)