Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions scripts/batchlinks-downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,13 @@
cnetpath = os.path.join(script_path, "extensions/sd-webui-controlnet/models")
extpath = os.path.join(script_path, "extensions") #obsolete
upscalerpath = os.path.join(script_path, "models/ESRGAN")
lycorispath = os.path.join(addnetlorapath, "lycoris")
#the LyCORIS model can now be used as if there were a regular LoRA model
lycorispath = os.path.join(script_path, "models/Lora")

if vladmandic:
cnetpath = os.path.join(script_path, "models/ControlNet")
lycorispath = os.path.join(script_path, "models/LyCORIS")
#the LyCORIS model can now be used as if there were a regular LoRA model
lycorispath = os.path.join(script_path, "models/Lora")

if cmd_opts.ckpt_dir:
altmodelpath = cmd_opts.ckpt_dir
Expand Down