adding "installed=true" to .meta files

with this change ModOrganizer2 will display Archives downloaded with Wabbajack as installed instead of just downloaded, since to be included during the compile they need to be used in the install in the first place.
This commit is contained in:
EzioTheDeadPoet 2020-09-05 20:18:55 +02:00 committed by GitHub
parent 9b09fa33ca
commit 366552e33c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -100,7 +100,7 @@ namespace Wabbajack.Lib.Downloaders
public string GetMetaIniString()
{
return $"{string.Join("\n", GetMetaIni())} installed=true";
return $"{string.Join("\n", GetMetaIni())}\ninstalled=true";
}
public async Task<(Archive? Archive, TempFile NewFile)> ServerFindUpgrade(Archive a)