Skip to content

Commit

Permalink
Update build script targets
Browse files Browse the repository at this point in the history
  • Loading branch information
jwood803 committed Sep 19, 2015
1 parent 2fc2aa4 commit 4dd784e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions FakeDemo/build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ Target "Test" (fun _ ->
trace "Testing stuff..."
)

Target "Deploy" (fun _ ->
trace "Heavy deploy action"
Target "Build" (fun _ ->
trace "Heavy build action"
)

"Test" // define the dependencies
==> "Deploy"
"Build" // define the dependencies
==> "Test"

Run "Deploy"
Run "Test"

0 comments on commit 4dd784e

Please sign in to comment.