Skip to content

Commit ac0280e

Browse files
committed
minor
1 parent a4325e0 commit ac0280e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/GitVersionVsixTask/GitVersion.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export class GitVersionTask {
9898
}
9999
}
100100

101-
async installTool(version: string, includePrerelease: boolean) : Promise<string> {
101+
async installTool(version: string, includePrerelease: boolean): Promise<string> {
102102
let installTool = tl.getVariable("INSTALL_TOOL");
103103
if (installTool === null || installTool === undefined || installTool.toUpperCase() == "TRUE") {
104104
return await new ToolInstaller().downloadAndInstall("GitVersion.Tool", version, false, includePrerelease);
@@ -108,7 +108,7 @@ export class GitVersionTask {
108108
getWorkingDirectory(targetPath: string) {
109109
let workDir;
110110

111-
if (!targetPath){
111+
if (!targetPath) {
112112
workDir = this.sourcesDirectory;
113113
} else {
114114
if (tl.exist(targetPath) && tl.stats(targetPath).isDirectory()) {

0 commit comments

Comments
 (0)