Skip to content

Commit

Permalink
Merge pull request #13 from TheKnarf/chmod-fix
Browse files Browse the repository at this point in the history
Chmod for the `run.sh` script and adding shebang
  • Loading branch information
thecooltechguy authored Mar 8, 2024
2 parents 5bf2432 + 7ae8f57 commit d8f9e48
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ Works for **Windows (WSL)**, **Linux**, & **macOS**
```
git clone https://github.com/ComfyWorkflows/comfyui-launcher
cd comfyui-launcher/
chmod +x run.sh
```

#### Start ComfyUI Launcher
Expand Down
4 changes: 3 additions & 1 deletion run.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

if [ ! -d "venv" ]; then
echo "Creating virtual environment for ComfyUI Launcher...\n\n"
python3 -m venv venv
Expand All @@ -11,4 +13,4 @@ pip install -r requirements.txt
echo "\n\n"
echo "ComfyUI Launcher is starting...\n\n"

cd server/ && python server.py
cd server/ && python server.py

0 comments on commit d8f9e48

Please sign in to comment.