From 3147920607c3776bd1e064619dd038f3037363a3 Mon Sep 17 00:00:00 2001 From: moozzyk Date: Wed, 22 Jul 2015 16:39:18 -0700 Subject: [PATCH] Reaciting to removing folder (including `.`) from the dnx command --- build/_k.shade | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/_k.shade b/build/_k.shade index 928276d16f..c83df51cae 100644 --- a/build/_k.shade +++ b/build/_k.shade @@ -12,6 +12,6 @@ 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}" run ${dnvmUse} . ${command}' if='!IsMono && !string.IsNullOrEmpty(dnvmUse)' -exec program='dnx' commandline='. ${command}' if='IsMono' +exec program='cmd' commandline='/C 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'