chore(build): fixing typo

This commit is contained in:
Rajesh Rajendran 2021-05-12 23:50:35 +05:30
parent 6b0f78a22d
commit d23e7980df
2 changed files with 4 additions and 4 deletions

View file

@ -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 <ee>
@ -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/

View file

@ -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"