Skip to content

Commit

Permalink
chore: fixed scripts comments
Browse files Browse the repository at this point in the history
  • Loading branch information
robinbourianes-kalisio committed Mar 21, 2024
1 parent f504385 commit f7f39fc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion scripts/build_app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ PUBLISH=false
CI_STEP_NAME="Build app"
while getopts "pr:" option; do
case $option in
p) # defines mongo version
p) # define to publish container to registry
PUBLISH=true
;;
r) # report outcome to slack
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ PUBLISH=false
CI_STEP_NAME="Build docs"
while getopts "pr:" OPT; do
case $OPT in
p) # defines mongo version
p) # define to publish docs
PUBLISH=true
;;
r) # report outcome to slack
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_e2e_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ROOT_DIR=$(dirname "$THIS_DIR")
PUBLISH=false
while getopts "p" option; do
case $option in
p) # defines mongo version
p) # define to publish built container to registry
PUBLISH=true
;;
*)
Expand Down
4 changes: 2 additions & 2 deletions scripts/setup_workspace.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ fi

while getopts "$OPT_LIST" OPT; do
case $OPT in
b) # defines branch
b) # defines branch to pull
WORKSPACE_BRANCH=$OPTARG;;
n) # defines node version
WORKSPACE_NODE=$OPTARG;;
t) # defines venv tag
t) # defines tag to pull
WORKSPACE_TAG=$OPTARG;;
k) # workspace kind (nokli kli klifull)
WORKSPACE_KIND=$OPTARG;;
Expand Down

0 comments on commit f7f39fc

Please sign in to comment.