Update setup.sh
Browse files
setup.sh
CHANGED
@@ -1,6 +1,15 @@
|
|
1 |
#!/bin/bash
|
2 |
|
3 |
-
# Clone the ComfyUI repository if
|
4 |
if [ ! -d "ComfyUI" ]; then
|
|
|
5 |
git clone -b totoro4 https://github.com/camenduru/ComfyUI.git
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
fi
|
|
|
1 |
#!/bin/bash
|
2 |
|
3 |
+
# Clone the ComfyUI repository if it doesn't exist
|
4 |
if [ ! -d "ComfyUI" ]; then
|
5 |
+
echo "Cloning the ComfyUI repository..."
|
6 |
git clone -b totoro4 https://github.com/camenduru/ComfyUI.git
|
7 |
+
else
|
8 |
+
echo "ComfyUI repository already exists."
|
9 |
+
fi
|
10 |
+
|
11 |
+
# Verify the clone
|
12 |
+
if [ ! -d "ComfyUI/totoro_extras" ]; then
|
13 |
+
echo "Error: Failed to clone the ComfyUI repository or 'totoro_extras' directory is missing."
|
14 |
+
exit 1
|
15 |
fi
|