From c1f3db00da558fb5dbf30740749a38d2b193fc86 Mon Sep 17 00:00:00 2001 From: nikolaia Date: Tue, 12 Jun 2018 17:05:33 +0200 Subject: [PATCH] Add missing quotation mark in Kudu.fs --- src/app/Fake.Azure.Kudu/Kudu.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/Fake.Azure.Kudu/Kudu.fs b/src/app/Fake.Azure.Kudu/Kudu.fs index 9e6201fcba5..f3b6df623b7 100644 --- a/src/app/Fake.Azure.Kudu/Kudu.fs +++ b/src/app/Fake.Azure.Kudu/Kudu.fs @@ -56,7 +56,7 @@ let kuduSync() = Process.execWithResult(fun psi -> { psi with FileName = Path.Combine(kuduPath, "kudusync.cmd") - Arguments = sprintf """-v 50 -f "%s" -t "%s" -n "%s" -p "%s" -i ".git;.hg;.deployment;deploy.cmd""" deploymentTemp deploymentTarget nextManifestPath previousManifestPath }) + Arguments = sprintf """-v 50 -f "%s" -t "%s" -n "%s" -p "%s" -i ".git;.hg;.deployment;deploy.cmd" """ deploymentTemp deploymentTarget nextManifestPath previousManifestPath }) (TimeSpan.FromMinutes 5.) result.Results |> Seq.iter (fun cm -> printfn "%O: %s" cm.Timestamp cm.Message) if not result.OK then failwith "Error occurred during Kudu Sync deployment."