Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update octopus sample to reflect 3.3.0 package #1021

Merged
merged 1 commit into from
Nov 30, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions help/octopusdeploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) }
)
Expand All @@ -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) }
)
Expand All @@ -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) }
)
Expand Down