Skip to content

Commit

Permalink
Remove leftover variable from build fsx
Browse files Browse the repository at this point in the history
  • Loading branch information
Kai Ito committed Oct 9, 2016
1 parent 0d8bf18 commit 48abe9f
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ open Fake
open Fake.AssemblyInfoFile

let buildDir = "./build/"
let outputDir = "./output/"

Target "SetVersion" (fun _ ->
let releaseNotes = ReadFile "release-notes.md" |> ReleaseNotesHelper.parseReleaseNotes
Expand All @@ -13,17 +12,15 @@ Target "SetVersion" (fun _ ->
)

Target "Clean" (fun _ ->
CleanDirs [ buildDir; outputDir ]
CleanDirs [ buildDir ]
)

let mutable assemblies = [""]

Target "Build" (fun _ ->
ensureDirectory buildDir

assemblies <-
["./Cursed.sln"]
|> MSBuildDebug buildDir "Build"
["./Cursed.sln"]
|> MSBuildDebug buildDir "Build"
|> ignore
)

"Clean"
Expand Down

0 comments on commit 48abe9f

Please sign in to comment.