From 4e87b0c9721767bb5e67298161cadee55b7178b5 Mon Sep 17 00:00:00 2001 From: Doug Bunting Date: Mon, 12 Oct 2015 18:51:11 -0700 Subject: [PATCH] Go back to running `dnu restore` with Mono - can't fix #290 at this time; need Ubuntu 14.04 on Travis --- build/_k-restore.shade | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/_k-restore.shade b/build/_k-restore.shade index aee93d8ed4..b3fcbdb471 100644 --- a/build/_k-restore.shade +++ b/build/_k-restore.shade @@ -10,6 +10,6 @@ restoreDir='' default currentDir = '${ Directory.GetCurrentDirectory() }' default restoreDir = '${ currentDir }' -default restore_options=' ${ E("KOREBUILD_DNU_RESTORE_OPTIONS") } --parallel' +default restore_options=' ${ E("KOREBUILD_DNU_RESTORE_OPTIONS") } ${ IsLinux ? string.Empty : "--parallel" }' -dnu command='restore${ restore_options }' workingDir='${ restoreDir }' dnvmUse='default -runtime coreclr' +dnu command='restore${ restore_options }' workingDir='${ restoreDir }'