You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ma...@apache.org on 2017/03/08 22:46:05 UTC

incubator-mynewt-newt git commit: newt; go version requirement is now 1.7.

Repository: incubator-mynewt-newt
Updated Branches:
  refs/heads/1_0_0_dev 6821cfe23 -> c42ebdce8


newt; go version requirement is now 1.7.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/commit/c42ebdce
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/tree/c42ebdce
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/diff/c42ebdce

Branch: refs/heads/1_0_0_dev
Commit: c42ebdce8c278a00fa8d68ed342c45cd22e44dfb
Parents: 6821cfe
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Wed Mar 8 14:45:39 2017 -0800
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Wed Mar 8 14:45:39 2017 -0800

----------------------------------------------------------------------
 INSTALLING.md | 2 +-
 build.sh      | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/c42ebdce/INSTALLING.md
----------------------------------------------------------------------
diff --git a/INSTALLING.md b/INSTALLING.md
index 8a0a0a5..9e8e214 100644
--- a/INSTALLING.md
+++ b/INSTALLING.md
@@ -11,7 +11,7 @@ when available.  To find these, please go to https://mynewt.apache.org/.
 # Installing From Source
 
 The newt tool is written in Go (https://golang.org/).  In order to build Apache
-Mynewt, you must have Go 1.5 or later installed on your system.  Please visit
+Mynewt, you must have Go 1.7 or later installed on your system.  Please visit
 the Golang website for more information on installing Go (https://golang.org/).
 
 Once you have Go installed, you can build newt by running the contained

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/c42ebdce/build.sh
----------------------------------------------------------------------
diff --git a/build.sh b/build.sh
index d4f108f..9405e6b 100755
--- a/build.sh
+++ b/build.sh
@@ -26,7 +26,7 @@ expandpath() {
     )
 }
 
-### Ensure >= go1.5 is installed.
+### Ensure >= go1.7 is installed.
 go_ver_str="$(go version | cut -d ' ' -f 3)"
 go_ver="${go_ver_str#go}"
 
@@ -49,9 +49,9 @@ then
     go_min=0
 fi
 
-if [ ! "$go_maj" -gt 1 ] && [ ! "$go_min" -ge 5 ]
+if [ ! "$go_maj" -gt 1 ] && [ ! "$go_min" -ge 7 ]
 then
-    printf "* Error: go 1.5 or later is required (detected version: %s)\n" \
+    printf "* Error: go 1.7 or later is required (detected version: %s)\n" \
         "$go_maj"."$go_min".X
     exit 1
 fi