Skip to content

Commit

Permalink
update symlink to copy method
Browse files Browse the repository at this point in the history
  • Loading branch information
hemarina committed Sep 8, 2024
1 parent e0b132c commit d70a2ff
Show file tree
Hide file tree
Showing 5 changed files with 2,830 additions and 2,227 deletions.
3 changes: 1 addition & 2 deletions ext/azuredevops/setupAzd/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import * as task from 'azure-pipelines-task-lib/task';
import * as cp from 'child_process'
import path from 'path';
import * as fs from 'fs'
import download from 'download';
Expand Down Expand Up @@ -77,7 +76,7 @@ Read more about Azure Developer CLI telemetry: https://github.com/Azure/azure-de
task.prependPath(extractedTo)
console.log(`azd installed to ${extractedTo}`)

task.exec(binPath, 'version')
task.execSync(binPath, 'version');
} catch (err: any) {
task.setResult(task.TaskResult.Failed, err.message);
}
Expand Down
Loading

0 comments on commit d70a2ff

Please sign in to comment.