File size: 960 Bytes
4ea43a4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/bash

# Array of repository URLs
repos=(
"https://github.com/Fannovel16/ComfyUI-Frame-Interpolation"
"https://github.com/jags111/efficiency-nodes-comfyui"
"https://github.com/WASasquatch/was-node-suite-comfyui"
"https://github.com/pythongosssss/ComfyUI-Custom-Scripts"
"https://github.com/ssitu/ComfyUI_UltimateSDUpscale"
"https://github.com/melMass/comfy_mtb"
"https://github.com/cubiq/ComfyUI_IPAdapter_plus"
"https://github.com/Kosinkadink/ComfyUI-AnimateDiff-Evolved"
"https://github.com/Kosinkadink/ComfyUI-Advanced-ControlNet"
"https://github.com/crystian/ComfyUI-Crystools"
"https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite"
)

# Directory to clone into
dir="../custom_nodes"

# Create the directory if it doesn't exist
mkdir -p $dir

# Loop over the repositories
for repo in "${repos[@]}"; do
  # Extract the repo name from the URL
  repo_name=$(basename $repo)
  # Clone the repo into the directory
  git clone $repo $dir/$repo_name
done