Skip to content

Commit 0573733

Browse files
authored
Code refactor for manifest (#20834)
* Code refactor for manifest * Update task versions
1 parent 33763ca commit 0573733

File tree

4 files changed

+573
-460
lines changed

4 files changed

+573
-460
lines changed

Tasks/PublishSymbolsV2/PublishSymbols.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,12 @@ export async function run(clientToolFilePath: string): Promise<void> {
4343
if(manifest && !fileExists(manifest)) {
4444
throw new Error(tl.loc("ManifestFileNotFound", manifest));
4545
}
46+
else if(manifest && fileExists(manifest)) {
47+
tl.debug("Manifest file found at: " + manifest);
48+
}
4649
else
4750
{
48-
tl.debug("Manifest file found at: " + manifest);
51+
tl.debug("Manifest is not specified");
4952
}
5053

5154
tl.debug("connectedServiceName: " + connectedServiceName);

0 commit comments

Comments
 (0)