File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22set -e
3+
4+ DEFAULT_NODE_VERSION=8
5+
36if [[ -z $ENV_ESSENTIAL_EXPORTS ]]; then
47 if [[ $CIRCLE_BRANCH ]]; then # Runs on CircleCI
58 export IS_CI=" 1"
@@ -14,7 +17,7 @@ if [[ -z $ENV_ESSENTIAL_EXPORTS ]]; then
1417 export COMMIT_AUTHOR=$( git log -1 --pretty=%an)
1518 export REPOSITORY_URL=$CIRCLE_REPOSITORY_URL
1619 if [[ -z $TOOL_NODE_VERSION ]]; then
17- export TOOL_NODE_VERSION=6
20+ export TOOL_NODE_VERSION=$DEFAULT_NODE_VERSION
1821 fi
1922 if [[ -z $NODE_VERSION ]]; then
2023 export NODE_VERSION=$TOOL_NODE_VERSION
@@ -32,9 +35,9 @@ if [[ -z $ENV_ESSENTIAL_EXPORTS ]]; then
3235 export REPOSITORY_URL=$( git config --get remote.origin.url)
3336 export REPOSITORY_PUSH_URL=$REPOSITORY_URL
3437 if [[ -z $TOOL_NODE_VERSION ]]; then
35- export TOOL_NODE_VERSION=6
38+ export TOOL_NODE_VERSION=$DEFAULT_NODE_VERSION
3639 fi
37- export NODE_VERSION_FW=6
40+ export NODE_VERSION_FW=$DEFAULT_NODE_VERSION
3841 if [[ -z $NODE_VERSION ]]; then
3942 export NODE_VERSION=$TOOL_NODE_VERSION
4043 fi
You can’t perform that action at this time.
0 commit comments