diff --git a/build_opencloud_microservices.sh b/build_opencloud_microservices.sh index 4489758..c8a36ac 100755 --- a/build_opencloud_microservices.sh +++ b/build_opencloud_microservices.sh @@ -7,7 +7,7 @@ find .. -mindepth 2 -maxdepth 2 -name 'Makefile' | while read -r makefile; do dir=$(dirname "$makefile") echo "Running 'make $TARGET' in $dir" ( - cd "$dir" && make "$TARGET" + cd "$dir" && export HOST="${2:-http://beta.opencloud.com/}" && make "$TARGET" ) if [ $? -ne 0 ]; then echo "Error: make $TARGET failed in $dir" diff --git a/clone_opencloud_microservices.sh b/clone_opencloud_microservices.sh index 03dfe77..2c3d851 100755 --- a/clone_opencloud_microservices.sh +++ b/clone_opencloud_microservices.sh @@ -23,7 +23,7 @@ clone_repo() { echo "Processing repository: $repo_name" - if [ !-d "$repo_name" ]; then + if [ ! -d "$1" ]; then echo "Cloning repository: $repo_name" git clone "$repo_url" if [ $? -ne 0 ]; then @@ -35,6 +35,7 @@ clone_repo() { cd "$repo_name" && git checkout $branch && git pull && cd .. } branch=${1:-main} +cd .. # Iterate through each repository in the list for repo in "${REPOS[@]}"; do clone_repo "$repo" "$branch" diff --git a/create_kind_cluster.sh b/create_kind_cluster.sh index 2921276..d754bc9 100755 --- a/create_kind_cluster.sh +++ b/create_kind_cluster.sh @@ -1,5 +1,5 @@ #!/bin/bash - +./delete_kind_cluster.sh | true cat <