Skip to content

Commit

Permalink
changed typo in continuous web job path
Browse files Browse the repository at this point in the history
it used to be "continous" but it needs to be "continuous"
  • Loading branch information
lukebuehler committed Jul 12, 2016
1 parent d45c7a8 commit a9a893a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/FakeLib/AzureKudu.fs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit a9a893a

Please sign in to comment.