From 2281d8cf89263b12d9c3a391ce1e3ce28ab2385e Mon Sep 17 00:00:00 2001 From: Pranav K Date: Thu, 18 Feb 2016 10:50:34 -0800 Subject: [PATCH] Fix missing parantheses --- build/_k-standard-goals.shade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/_k-standard-goals.shade b/build/_k-standard-goals.shade index f4b8c3519f..5100bb0a9e 100644 --- a/build/_k-standard-goals.shade +++ b/build/_k-standard-goals.shade @@ -204,7 +204,7 @@ default NUGET_FEED = 'https://api.nuget.org/v3/index.json' } #nuget-install target='install' description='Install NuGet packages to local repo' - -if (Directory.Exists("src") { + -if (Directory.Exists("src")) { kpm-publish sourcePackagesDir='${BUILD_DIR}' targetPackagesDir='${E("PACKAGES_PUBLISH_DIR")}' nuget-resilient-publish sourcePackagesDir='${BUILD_DIR}' nugetFeed='${E("NUGET_PUBLISH_FEED")}' if='!string.IsNullOrEmpty(E("NUGET_PUBLISH_FEED"))' - }