adjustment script clone
This commit is contained in:
parent
c79db0b3de
commit
cb3d135d6c
@ -23,10 +23,7 @@ clone_repo() {
|
||||
|
||||
echo "Processing repository: $repo_name"
|
||||
|
||||
if [ -d "$repo_name" ]; then
|
||||
echo "Repository '$repo_name' already exists. Pulling latest changes..."
|
||||
cd "$repo_name" && git checkout $branch && git pull && cd ..
|
||||
else
|
||||
if [ !-d "$repo_name" ]; then
|
||||
echo "Cloning repository: $repo_name"
|
||||
git clone "$repo_url"
|
||||
if [ $? -ne 0 ]; then
|
||||
@ -34,6 +31,8 @@ clone_repo() {
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
echo "Repository '$repo_name' already exists. Pulling latest changes..."
|
||||
cd "$repo_name" && git checkout $branch && git pull && cd ..
|
||||
}
|
||||
branch=${1:-main}
|
||||
# Iterate through each repository in the list
|
||||
|
Loading…
Reference in New Issue
Block a user