mobenta commited on
Commit
03bb9a1
·
verified ·
1 Parent(s): dfad5e2

Update setup.sh

Browse files
Files changed (1) hide show
  1. setup.sh +10 -1
setup.sh CHANGED
@@ -1,6 +1,15 @@
1
  #!/bin/bash
2
 
3
- # Clone the ComfyUI repository if not already present
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