Fixed creds.yml not being created on new installations
This commit is contained in:
parent
091db6afeb
commit
6e00fae9b2
1 changed files with 1 additions and 1 deletions
|
@ -195,7 +195,7 @@ public sealed partial class EllieResolver : IBotResolver
|
|||
var credsUri = Path.Join(Directory.GetParent(credsExampleUri)?.FullName ?? Path.Join(installationUri, "data"), "creds.yml");
|
||||
|
||||
if (!File.Exists(credsUri))
|
||||
File.Copy(Path.Join(installationUri, "data", "creds_example.yml"), credsUri);
|
||||
File.Copy(credsExampleUri, credsUri);
|
||||
|
||||
return (currentVersion, latestVersion);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue