From 6d5ac18d0c474e813e3ec4064ac5020a84690dce Mon Sep 17 00:00:00 2001 From: Pranav K Date: Wed, 24 Jun 2015 14:35:02 -0700 Subject: [PATCH] Use dnvm run instead of switching using dnvm use --- build/_k.shade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/_k.shade b/build/_k.shade index f4fd43cb6c..928276d16f 100644 --- a/build/_k.shade +++ b/build/_k.shade @@ -13,5 +13,5 @@ default dnvmUse='' var dnvmPath='${Directory.GetCurrentDirectory()}\packages\KoreBuild\build\dnvm' exec program='cmd' commandline='/C dnx . ${command}' if='!IsMono && string.IsNullOrEmpty(dnvmUse)' -exec program='cmd' commandline='/C "${dnvmPath}" use ${dnvmUse} && dnx . ${command}' if='!IsMono && !string.IsNullOrEmpty(dnvmUse)' +exec program='cmd' commandline='/C "${dnvmPath}" run ${dnvmUse} . ${command}' if='!IsMono && !string.IsNullOrEmpty(dnvmUse)' exec program='dnx' commandline='. ${command}' if='IsMono'