From 8487b3c43d62f30bcf5e833a3b060ceeda9e1044 Mon Sep 17 00:00:00 2001 From: mr Date: Fri, 28 Mar 2025 13:24:06 +0100 Subject: [PATCH] scripted --- build_opencloud_microservices.sh | 2 +- clone_opencloud_microservices.sh | 3 ++- create_kind_cluster.sh | 2 +- delete_kind_cluster.sh | 2 +- install.sh | 1 + upgrade.sh | 0 6 files changed, 6 insertions(+), 4 deletions(-) mode change 100644 => 100755 install.sh mode change 100644 => 100755 upgrade.sh 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 <