Skip to content

Commit

Permalink
Update install args
Browse files Browse the repository at this point in the history
- nanodu .NET tool is now available from nuget.org, no need to use private feed anymore.
  • Loading branch information
josesimoes committed Feb 27, 2023
1 parent d62b1e3 commit 3611724
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ async function run() {
process.env["DOTNET_NOLOGO"] = 'true';

// install nanodu
let installArgs = ['tool', 'install', '-g', 'nanodu', '--add-source', 'https://pkgs.dev.azure.com/nanoframework/feed/_packaging/sandbox/nuget/v3/index.json'];
let installArgs = ['tool', 'install', '-g', 'nanodu'];

let exitCode = await exec('dotnet', installArgs, { ignoreReturnCode: true });
if (exitCode > 1) {
Expand Down

0 comments on commit 3611724

Please sign in to comment.