We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03265e0 commit 5072b87Copy full SHA for 5072b87
bagit.net/services/TagFileService.cs
@@ -102,7 +102,7 @@ public void ValidateBagitTXT(string bagRoot)
102
{
103
var bagitPath = Path.Combine(bagRoot, "bagit.txt");
104
if (!File.Exists(bagitPath))
105
- _messageService.Add(new MessageRecord(MessageLevel.ERROR, "bagit.txt is missing from {bagRoot}."));
+ _messageService.Add(new MessageRecord(MessageLevel.ERROR, $"bagit.txt is missing from {bagRoot}."));
106
var tags = GetTagFileAsDict(bagitPath);
107
108
if (!tags.TryGetValue("BagIt-Version", out var version))
0 commit comments