From f24c531ed5b4566f2079cf687c48eda7b39b0b3e Mon Sep 17 00:00:00 2001 From: Afshin Arani Date: Thu, 24 Aug 2023 14:18:50 +0330 Subject: [PATCH] scripts/make.fsx: disable parallel processing --- scripts/make.fsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make.fsx b/scripts/make.fsx index e393c6e6f..c4acda323 100644 --- a/scripts/make.fsx +++ b/scripts/make.fsx @@ -134,7 +134,7 @@ exec mono "$FRONTEND_PATH" "$@" let NugetRestore projectOrSolutionRelativePath = let nugetArgs = sprintf - "restore %s -SolutionDirectory ." + "restore %s -SolutionDirectory . -DisableParallelProcessing" projectOrSolutionRelativePath let proc = Network.RunNugetCommand