Browse Source

Fix InvokeAI root path environment

pull/55/head
Ionite 1 year ago committed by GitHub
parent
commit
8686c83b12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      StabilityMatrix.Core/Models/Packages/InvokeAI.cs

2
StabilityMatrix.Core/Models/Packages/InvokeAI.cs

@ -272,7 +272,7 @@ public class InvokeAI : BaseGitPackage
// Need to make subdirectory because they store config in the
// directory *above* the root directory
var root = installPath.JoinDir("invokeai_root");
var root = installPath.JoinDir(RelativeRootPath);
root.Create();
env["INVOKEAI_ROOT"] = root;

Loading…
Cancel
Save