diff --git a/api/build.sh b/api/build.sh index 3d7d24d3c..390fbaca2 100644 --- a/api/build.sh +++ b/api/build.sh @@ -2,7 +2,7 @@ # Script to build api module # flags to accept: -# envarg: build for enterprize edition. +# envarg: build for enterprise edition. # Default will be OSS build. # Usage: IMAGE_TAG=latest DOCKER_REPO=myDockerHubID bash build.sh @@ -18,7 +18,7 @@ check_prereq() { } function build_api(){ - # Copy enterprize code + # Copy enterprise code [[ $1 == "ee" ]] && { cp -rf ../ee/api/* ./ cp -rf ../ee/api/.chalice/* ./.chalice/ diff --git a/backend/build.sh b/backend/build.sh index 6ace4adce..6d7e9467e 100644 --- a/backend/build.sh +++ b/backend/build.sh @@ -2,7 +2,7 @@ # Script to build api module # flags to accept: -# ee: build for enterprize edition. +# ee: build for enterprise edition. # Default will be OSS build. # Example @@ -19,7 +19,7 @@ check_prereq() { } function build_api(){ - # Copy enterprize code + # Copy enterprise code [[ $1 == "ee" ]] && { cp -r ../ee/backend/* ./ ee="true"