From 10964cc04f978098e54cd7eabba5147abcf29603 Mon Sep 17 00:00:00 2001 From: moozzyk Date: Tue, 19 Jan 2016 14:00:13 -0800 Subject: [PATCH] Disabling parallel restore on Mac and Linux --- KoreBuild-dotnet/build/_dotnet-restore.shade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KoreBuild-dotnet/build/_dotnet-restore.shade b/KoreBuild-dotnet/build/_dotnet-restore.shade index 6f798a37c1..fcaecc9fef 100644 --- a/KoreBuild-dotnet/build/_dotnet-restore.shade +++ b/KoreBuild-dotnet/build/_dotnet-restore.shade @@ -10,6 +10,6 @@ restoreDir='' default currentDir = '${ Directory.GetCurrentDirectory() }' default restoreDir = '${ currentDir }' -default restore_options=' ${ E("KOREBUILD_DOTNET_RESTORE_OPTIONS") } ' +default restore_options=' ${ E("KOREBUILD_DOTNET_RESTORE_OPTIONS") } ${ !IsLinux ? "--parallel none" : string.Empty }' dotnet command='restore${ restore_options }' workingDir='${ restoreDir }'