From e38036af556b60b4fe00ea1e86366e0da9ac3d3b Mon Sep 17 00:00:00 2001 From: Tomas Jansson Date: Mon, 30 Nov 2015 10:54:12 +0100 Subject: [PATCH] update octopus sample to reflect 3.3.0 package --- help/octopusdeploy.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/help/octopusdeploy.md b/help/octopusdeploy.md index 9ff022fbcd0..958d4c57d92 100644 --- a/help/octopusdeploy.md +++ b/help/octopusdeploy.md @@ -38,7 +38,7 @@ So once you have created a project you are able to create and push a release int Octo (fun octoParams -> { octoParams with - ToolPath = "./packages/octopustools" + ToolPath = "./packages/octopustools/tools" Server = server Command = CreateRelease (release, None) } ) @@ -61,7 +61,7 @@ This is often a good idea when you want your FAKE build script to continue on to Octo (fun octoParams -> { octoParams with - ToolPath = "./packages/octopustools" + ToolPath = "./packages/octopustools/tools" Server = server Command = CreateRelease (release, Some deploy) } ) @@ -83,7 +83,7 @@ Finally when you are absolutely happy that your release is good to go the next s Octo (fun octoParams -> { octoParams with - ToolPath = "./packages/octopustools" + ToolPath = "./packages/octopustools/tools" Server = server Command = DeployRelease (promote) } )