|
#!/bin/bash |
|
|
|
|
|
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" |
|
) |
|
|
|
|
|
dir="../custom_nodes" |
|
|
|
|
|
mkdir -p $dir |
|
|
|
|
|
for repo in "${repos[@]}"; do |
|
|
|
repo_name=$(basename $repo) |
|
|
|
git clone $repo $dir/$repo_name |
|
done |