Skip to content

Commit

Permalink
Fix check for Msys
Browse files Browse the repository at this point in the history
  • Loading branch information
phoerious committed Jan 28, 2017
1 parent 96ca7a8 commit b718089
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions release-tool
Original file line number Diff line number Diff line change
Expand Up @@ -476,8 +476,7 @@ build() {
export CXX="$COMPILER"

if [ "" == "$DOCKER_IMAGE" ]; then

if [ "$(uname -i)" == "Msys" ]; then
if [ "$(uname -o)" == "Msys" ]; then
logInfo "Configuring build..."
cmake -DCMAKE_BUILD_TYPE=Release -DWITH_TESTS=Off -G"MSYS Makefiles" \
-DCMAKE_INSTALL_PREFIX="${INSTALL_PREFIX}" $CMAKE_OPTIONS "$SRC_DIR"
Expand Down

0 comments on commit b718089

Please sign in to comment.