From a9a893ac6f0b72fa7c330083905bfbd5bed1f45a Mon Sep 17 00:00:00 2001 From: Lukas Buhler Date: Tue, 12 Jul 2016 12:49:17 -0400 Subject: [PATCH] changed typo in continuous web job path it used to be "continous" but it needs to be "continuous" --- src/app/FakeLib/AzureKudu.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/FakeLib/AzureKudu.fs b/src/app/FakeLib/AzureKudu.fs index 8854767b701..73047af1556 100644 --- a/src/app/FakeLib/AzureKudu.fs +++ b/src/app/FakeLib/AzureKudu.fs @@ -37,7 +37,7 @@ let stageFolder source shouldInclude = /// Gets the path for deploying a web job to. let getWebJobPath webJobType webJobName = - let webJobType = match webJobType with Scheduled -> "scheduled" | Continuous -> "continous" + let webJobType = match webJobType with Scheduled -> "scheduled" | Continuous -> "continuous" sprintf @"%s\app_data\jobs\%s\%s\" deploymentTemp webJobType webJobName /// Stages a set of files into a WebJob folder in the temp deployment area, ready for deployment into the website as a webjob.