From 2c2f973a17175e3401023994d4ea345002d223b3 Mon Sep 17 00:00:00 2001 From: Hector Ramos Date: Thu, 6 Sep 2018 17:15:26 -0700 Subject: [PATCH] Remove Node 10 check --- scripts/validate-ios-test-env.sh | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/scripts/validate-ios-test-env.sh b/scripts/validate-ios-test-env.sh index d52bb9d7552300..fbf7fbe65fbefd 100755 --- a/scripts/validate-ios-test-env.sh +++ b/scripts/validate-ios-test-env.sh @@ -4,7 +4,7 @@ # testing environment. # # In particular, it checks that the minimum required Xcode version is installed. -# It also checks that the correct Node version is installed. Node 10 is not fully +# It also checks that the correct Node version is installed. Node 10 is not fully # supported at the time and Node 6 is no longer supported. # Function used to compare dot seperated version numbers @@ -22,17 +22,10 @@ NODE_VERSION="$(command node --version | sed 's/[-/a-zA-Z]//g' |sed 's/.\{2\}$// if (( $(echo "${NODE_VERSION} <= 6.0" | bc -l) )); then echo "Node ${NODE_VERSION} detected. This version of Node is not supported." - echo "Note: Node 10 is not fully supported at the time and Node 6 is no longer supported." echo "See https://nodejs.org/en/download/ for instructions." exit 1 fi -if (( $(echo "${NODE_VERSION} == 10.0" | bc -l) )); then - echo "Node ${NODE_VERSION} detected. This version of Node is not fully supported at this time." - echo "See https://github.com/facebook/react-native/issues/19229 for more information." - exit 1 -fi - # Check that Xcode is installed. if [ -z "$(which xcodebuild)" ]; then echo "Could not find Xcode build tools. Please check your Xcode install."