Skip to content

Commit eb86a05

Browse files
committed
Merge pull request mhinze#1 from programcsharp/master
Workaround to clear function return
2 parents 699c690 + 81a10ad commit eb86a05

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)