File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 33** Table of Contents** * generated with [ DocToc] ( https://github.com/thlorenz/doctoc ) *
44
55 - [ The first script] ( #the-first-script )
6+ - [ Boostrapping Xake.Core] ( #boostrapping-xakecore )
67 - [ So what?] ( #so-what )
78 - [ Dependencies tracking] ( #dependencies-tracking )
89 - [ Running multiple rules in parallel] ( #running-multiple-rules-in-parallel )
@@ -71,7 +72,7 @@ System.Environment.CurrentDirectory <- __SOURCE_DIRECTORY__
7172let file = System.IO.Path.Combine("packages", "Xake.Core.dll")
7273if not (System.IO.File.Exists file) then
7374 printf "downloading xake.core assembly..."; System.IO.Directory.CreateDirectory("packages") |> ignore
74- let url = "https://github.com/OlegZee/Xake/releases/download/v0.1.2 /Xake.Core.dll"
75+ let url = "https://github.com/OlegZee/Xake/releases/download/v0.1.3 /Xake.Core.dll"
7576 use wc = new System.Net.WebClient() in wc.DownloadFile(url, file + "__"); System.IO.File.Move(file + "__", file)
7677 printfn ""
7778
You can’t perform that action at this time.
0 commit comments