Skip to content

Commit 81a10ad

Browse files
committed
Workaround for regression of http://nuget.codeplex.com/workitem/1068 in NuGet Package Manager Console. Send function output to null so it doesn't get picked up.
1 parent 699c690 commit 81a10ad

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/init.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,6 @@ function global:Update-SolutionScripts()
2727
}
2828
}
2929

30-
Update-SolutionScripts
30+
# $null is workaround for NuGet echoing function output to command prompt
31+
# http://nuget.codeplex.com/workitem/1068
32+
Update-SolutionScripts > $null

0 commit comments

Comments
 (0)