Commit ·
4ea43a4
1
Parent(s): 8738ba1
create distribute nodes .sh
Browse files- distibute_nodes.sh +30 -0
distibute_nodes.sh
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
|
| 3 |
+
# Array of repository URLs
|
| 4 |
+
repos=(
|
| 5 |
+
"https://github.com/Fannovel16/ComfyUI-Frame-Interpolation"
|
| 6 |
+
"https://github.com/jags111/efficiency-nodes-comfyui"
|
| 7 |
+
"https://github.com/WASasquatch/was-node-suite-comfyui"
|
| 8 |
+
"https://github.com/pythongosssss/ComfyUI-Custom-Scripts"
|
| 9 |
+
"https://github.com/ssitu/ComfyUI_UltimateSDUpscale"
|
| 10 |
+
"https://github.com/melMass/comfy_mtb"
|
| 11 |
+
"https://github.com/cubiq/ComfyUI_IPAdapter_plus"
|
| 12 |
+
"https://github.com/Kosinkadink/ComfyUI-AnimateDiff-Evolved"
|
| 13 |
+
"https://github.com/Kosinkadink/ComfyUI-Advanced-ControlNet"
|
| 14 |
+
"https://github.com/crystian/ComfyUI-Crystools"
|
| 15 |
+
"https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite"
|
| 16 |
+
)
|
| 17 |
+
|
| 18 |
+
# Directory to clone into
|
| 19 |
+
dir="../custom_nodes"
|
| 20 |
+
|
| 21 |
+
# Create the directory if it doesn't exist
|
| 22 |
+
mkdir -p $dir
|
| 23 |
+
|
| 24 |
+
# Loop over the repositories
|
| 25 |
+
for repo in "${repos[@]}"; do
|
| 26 |
+
# Extract the repo name from the URL
|
| 27 |
+
repo_name=$(basename $repo)
|
| 28 |
+
# Clone the repo into the directory
|
| 29 |
+
git clone $repo $dir/$repo_name
|
| 30 |
+
done
|