Skip to content

Commit

Permalink
Merge pull request #322 from hollaex/testnet
Browse files Browse the repository at this point in the history
HollaEx CLI v3.0.1 Release
  • Loading branch information
kycfeel authored Aug 14, 2024
2 parents eec82d2 + 3117a95 commit e3f9123
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
15 changes: 14 additions & 1 deletion hollaex
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,19 @@ if [[ ! "$HOLLAEX_NETWORK_OPERATION" ]]; then

fi

check_git_conflict() {
local file=$1

if grep -q '<< HEAD' "$file" && grep -q '==' "$file" && grep -q '>>' "$file"; then
echo -e "\nError: Git conflict detected in file: $file"
echo "Please check the file and fix the Git conflict to proceed."
exit 1;
fi
}

check_git_conflict settings/configmap;
check_git_conflict settings/secret;

err_msg() { echo "$@" ;} >&2
err_msg_a() { err_msg "-a option argument required" ;}
err_msg_l() { err_msg "--long option argument required" ;}
Expand Down Expand Up @@ -5197,7 +5210,7 @@ elif [[ "$1" == "web" ]]; then

# apply_nginx_root_domain_to_web

if command docker compose -f $HOLLAEX_CLI_INIT_PATH/web/docker-compose.yaml -p client up -d; then
if command docker compose -f $HOLLAEX_CLI_INIT_PATH/web/docker-compose.yaml -p client up --build -d; then

echo "Starting the Nginx..."
if command docker compose -f ${HOLLAEX_CLI_INIT_PATH}/nginx/docker-compose.yaml up -d; then
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.0
3.0.1

0 comments on commit e3f9123

Please sign in to comment.