Skip to content

Commit bdb92aa

Browse files
committed
[skip-ci] init 0.2.4
1 parent adb5c5a commit bdb92aa

File tree

5 files changed

+12
-3
lines changed

5 files changed

+12
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Build tools for Haxe
55
[![Build Status](https://ci.appveyor.com/api/projects/status/lxmpp7d9pfoyd7dq/branch/develop?svg=true)](https://ci.appveyor.com/project/eliasku/hxmake)
66

77
[![Lang](https://img.shields.io/badge/language-haxe-orange.svg)](http://haxe.org)
8-
[![Version](https://img.shields.io/badge/version-v0.2.3-green.svg)](https://github.com/eliasku/hxmake)
8+
[![Version](https://img.shields.io/badge/version-v0.2.4-green.svg)](https://github.com/eliasku/hxmake)
99
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](http://opensource.org/licenses/MIT)
1010

1111
### Installation

haxelib.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
"eliasku"
1919
],
2020
"releasenote": "see changelog",
21-
"version": "0.2.3",
21+
"version": "0.2.4",
2222
"url": "https://github.com/eliasku/hxmake"
2323
}

make/HxMake.hx

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class HxMake extends hxmake.Module {
1717
apply(HaxelibPlugin);
1818

1919
library(function(ext:HaxelibExt) {
20-
ext.config.version = "0.2.3";
20+
ext.config.version = "0.2.4";
2121
ext.config.description = "Task automation for Haxe multi-module projects";
2222
ext.config.url = "https://github.com/eliasku/hxmake";
2323
ext.config.tags = ["haxe", "make", "build", "haxelib", "tools", "neko", "project", "module", "cross"];

run.n

-814 Bytes
Binary file not shown.

src/hxmake/cli/FileUtil.hx

+9
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,13 @@ class FileUtil {
9494
public static function dirExists(path:String):Bool {
9595
return FileSystem.exists(path) && FileSystem.isDirectory(path);
9696
}
97+
98+
// public static function link(sourcePath:String, destinationPath:String) {
99+
// if (CL.platform.isWindows) {
100+
// CL.command("mklink", ["/J", destinationPath.replace("/", "\\"), sourcePath.replace("/", "\\")]);
101+
// }
102+
// else {
103+
// CL.command("ln", ["-s", sourcePath, destinationPath]);
104+
// }
105+
// }
97106
}

0 commit comments

Comments
 (0)