Skip to content

Commit 745d6ef

Browse files
authored
Merge pull request #7126 from dibarbet/log_restore_args
Log args passed to restore
2 parents 96f8edd + 1505cae commit 745d6ef

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tasks/offlinePackagingTasks.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,7 @@ async function restoreNugetPackage(packageName: string, packageVersion: string,
280280
dotnetArgs.push('--interactive');
281281
}
282282

283+
console.log(`Restore args: dotnet ${dotnetArgs.join(' ')}`);
283284
const process = cp.spawn('dotnet', dotnetArgs, { stdio: 'inherit' });
284285
await new Promise((resolve) => {
285286
process.on('exit', (exitCode, _) => {

0 commit comments

Comments
 (0)