mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2026-02-02 22:02:50 -08:00
removing escaping slash
This commit is contained in:
parent
b4bce19f34
commit
5a0f342103
1 changed files with 2 additions and 2 deletions
4
.github/workflows/on_merge_to_master.yaml
vendored
4
.github/workflows/on_merge_to_master.yaml
vendored
|
|
@ -26,14 +26,14 @@ jobs:
|
|||
|
||||
# Kill any existing process of launch.py if running
|
||||
echo "Checking for existing launch.py process..."
|
||||
PID=\$(pgrep -f launch.py)
|
||||
PID=$(pgrep -f launch.py)
|
||||
if [ -n "\$PID" ]; then
|
||||
echo "Found running process for launch.py. Terminating PID \$PID..."
|
||||
kill -9 \$PID
|
||||
else
|
||||
echo "No running process found for launch.py."
|
||||
fi
|
||||
|
||||
|
||||
# Check if the stable-diffusion-webui folder exists
|
||||
if [ ! -d "stable-diffusion-webui" ]; then
|
||||
echo "Cloning stable-diffusion-webui from GitHub..."
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue