Skip to content
This repository has been archived by the owner on Dec 1, 2018. It is now read-only.

Commit

Permalink
Merge pull request #82 from blinkreaction/develop
Browse files Browse the repository at this point in the history
Release v1.6.2
  • Loading branch information
lmakarov authored Jun 27, 2016
2 parents 49b2248 + 821fc30 commit 9db5a04
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.6.2 (2016-06-27)

- Hotfix: Fixed broken winpty dependency since 1.6.0 on Windows


## 1.6.1 (2016-06-03)

- Hotfix for downloading new docker binary versions
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.1
1.6.2
11 changes: 7 additions & 4 deletions scripts/presetup-win.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

DOCKER_VERSION=1.11.2
DOCKER_COMPOSE_VERSION=1.7.1
# These two shouldbe changes together. Always check https://github.com/rprichard/winpty/releases for the current version.
WINPTY_VERSION=0.3.1
CYGWIN_VERSION=2.5.1
##

# Console colors
red='\033[0;31m'
Expand Down Expand Up @@ -47,10 +50,10 @@ if [[ "$B2D_INSTALL_MODE" == "full" ]] || [[ "$B2D_INSTALL_MODE" == "docker" ]]

# Install winpty
echo-green "Installing winpty (console) v$WINPTY_VERSION..."
curl -sSL -O https://github.com/rprichard/winpty/releases/download/$WINPTY_VERSION/winpty-$WINPTY_VERSION-cygwin-2.4.1-ia32.tar.gz
tar -xf winpty-$WINPTY_VERSION-cygwin-2.4.1-ia32.tar.gz
mv winpty-$WINPTY_VERSION-cygwin-2.4.1-ia32/bin/* /usr/local/bin
rm -rf winpty-$WINPTY_VERSION-cygwin-2.4.1-ia32*
curl -sSL -O https://github.com/rprichard/winpty/releases/download/$WINPTY_VERSION/winpty-$WINPTY_VERSION-cygwin-$CYGWIN_VERSION-ia32.tar.gz
tar -xf winpty-$WINPTY_VERSION-cygwin-$CYGWIN_VERSION-ia32.tar.gz
mv winpty-$WINPTY_VERSION-cygwin-$CYGWIN_VERSION-ia32/bin/* /usr/local/bin
rm -rf winpty-$WINPTY_VERSION-cygwin-$CYGWIN_VERSION-ia32*

# Git settings
echo-green "Adjusting git defaults..."
Expand Down

0 comments on commit 9db5a04

Please sign in to comment.