Skip to content

Commit c014917

Browse files
chusemanarturcic
authored andcommitted
Check that configFilePath exists (if specified)
1 parent 0252379 commit c014917

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitVersionTfsTask/GitVersion.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export class GitVersionTask {
2323
constructor() {
2424
this.preferBundledVersion = tl.getBoolInput('preferBundledVersion') || true;
2525
this.configFilePathSupplied = tl.filePathSupplied('configFilePath');
26-
this.configFilePath = tl.getPathInput('configFilePath');
26+
this.configFilePath = tl.getPathInput('configFilePath', false, true);
2727
this.updateAssemblyInfo = tl.getBoolInput('updateAssemblyInfo');
2828

2929
this.updateAssemblyInfoFilename = tl.getInput('updateAssemblyInfoFilename');

0 commit comments

Comments
 (0)