Skip to content

Commit 5e46159

Browse files
committed
updated release version
-. operator signature was changed
1 parent e485370 commit 5e46159

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/overview.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
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__
7172
let file = System.IO.Path.Combine("packages", "Xake.Core.dll")
7273
if 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

0 commit comments

Comments
 (0)