Skip to content

Commit

Permalink
Upgrade mintty to 2.6.2-0
Browse files Browse the repository at this point in the history
  • Loading branch information
goreliu committed Oct 14, 2016
1 parent cba9014 commit d34b92e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions src/build.bat
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
set PATH=%PATH%;c:\windows\Sysnative

bash -c ./prepare.sh && ^
build\ahk2exe\Ahk2Exe.exe /in run-wsl-file.ahk /out run-wsl-file.exe /icon icons\script.ico && ^
build\ahk2exe\Ahk2Exe.exe /in open-wsl.ahk /out open-wsl.exe /icon icons\terminal.ico && ^
build\ahk2exe\Ahk2Exe.exe /in vim.ahk /out vim.exe /icon icons\text.ico && ^
build\ahk\Compiler\Ahk2Exe.exe /in run-wsl-file.ahk /out run-wsl-file.exe /icon icons\script.ico && ^
build\ahk\Compiler\Ahk2Exe.exe /in open-wsl.ahk /out open-wsl.exe /icon icons\terminal.ico && ^
build\ahk\Compiler\Ahk2Exe.exe /in vim.ahk /out vim.exe /icon icons\text.ico && ^
bash -c ./package.sh && ^
echo Build succeeded. && ^
exit
Expand Down
2 changes: 1 addition & 1 deletion src/package.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

version="0.6.1"
version="0.6.2"

set -e

Expand Down
8 changes: 4 additions & 4 deletions src/prepare.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

cygwin_version="2.6.0-1"
mintty_version="2.6.1-0"
mintty_version="2.6.2-0"
wslbridge_version="0.2.0"
cbwin_version="0.10"

Expand All @@ -26,7 +26,7 @@ wget -nc http://mirrors.kernel.org/sourceware/cygwin/x86_64/release/cygwin/cygwi
wget -nc http://mirrors.kernel.org/sourceware/cygwin/x86_64/release/mintty/mintty-${mintty_version}.tar.xz
wget -nc https://github.com/rprichard/wslbridge/releases/download/${wslbridge_version}/wslbridge-${wslbridge_version}-cygwin64.tar.gz
wget -nc https://github.com/xilun/cbwin/releases/download/v${cbwin_version}/cbwin-bin-${cbwin_version}.zip
wget -nc https://autohotkey.com/download/ahk2exe.zip
wget -nc https://autohotkey.com/download/ahk.zip

rm -rf bin etc usr doc

Expand Down Expand Up @@ -60,5 +60,5 @@ rm -rf bin doc
mv usr/bin usr/share/doc .
rm -rf usr

rm -rf ahk2exe && mkdir ahk2exe && cd ahk2exe
unzip ../ahk2exe.zip
rm -rf ahk && mkdir ahk && cd ahk
unzip ../ahk.zip

0 comments on commit d34b92e

Please sign in to comment.