Commit d44d8d9 1 parent 308cd86 commit d44d8d9 Copy full SHA for d44d8d9
File tree 4 files changed +20
-0
lines changed
4 files changed +20
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ ROOT=$( dirname $( readlink -f $0 ) ) /..
4
+
5
+ BUILD_OS=" linux64"
6
+ if [[ " $OSTYPE " == " darwin" * ]]; then
7
+ BUILD_OS=" mac"
8
+ fi
9
+
10
+ VERSION=" ${BUILD_OS} _569e52e"
11
+ $ROOT /build/$VERSION /haxelib $@
Original file line number Diff line number Diff line change
1
+ @ ECHO OFF
2
+
3
+ SET ROOT = %~dp0
4
+ SET ROOT = %ROOT% ..
5
+ SET VERSION = windows64_569e52e
6
+
7
+ CALL %ROOT% \build\%VERSION% \haxelib.exe %*
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ REM Install base tools
12
12
ECHO F | XCOPY /S /Q /Y /F " extra/haxe.bat" " bin/haxe.bat"
13
13
ECHO F | XCOPY /S /Q /Y /F " extra/haxelib.bat" " bin/haxelib.bat"
14
14
ECHO F | XCOPY /S /Q /Y /F " extra/hx.bat" " bin/hx.bat"
15
+ ECHO F | XCOPY /S /Q /Y /F " extra/hxlib.bat" " bin/hxlib.bat"
15
16
16
17
REM Setup included Haxe version
17
18
MKLINK /D " versions/5.0.0-alpha.1+%HAXE_VER% " " %ROOT% /build/windows64_%HAXE_VER% "
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ mkdir -p "$ROOT/bin"
9
9
10
10
# Install cli launcher
11
11
cp extra/hx bin/
12
+ cp extra/hxlib bin/
12
13
13
14
BUILD_OS=" linux64"
14
15
if [[ " $OSTYPE " == " darwin" * ]]; then
You can’t perform that action at this time.
0 commit comments