Skip to content

Commit adf3c51

Browse files
authored
Merge pull request #88 from xGoldenK/master
Fixed typo (now works correctly)
2 parents d60f12e + 7553354 commit adf3c51

File tree

1 file changed

+1
-1
lines changed
  • src/NosCore.ParserInputGenerator.Launcher

1 file changed

+1
-1
lines changed

src/NosCore.ParserInputGenerator.Launcher/Worker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken)
7373
var fileInfo = new FileInfo($".{Path.DirectorySeparatorChar}output{Path.DirectorySeparatorChar}{file}");
7474
await _extractor.ExtractAsync(fileInfo, dest, rename);
7575
}
76-
var directoryOfFilesToBeTarred = new DirectoryInfo(".{Path.DirectorySeparatorChar}output{Path.DirectorySeparatorChar}parser");
76+
var directoryOfFilesToBeTarred = new DirectoryInfo($".{Path.DirectorySeparatorChar}output{Path.DirectorySeparatorChar}parser");
7777
var filesInDirectory = directoryOfFilesToBeTarred.GetFiles("*.*", SearchOption.AllDirectories);
7878
var tarArchiveName = $".{Path.DirectorySeparatorChar}output{Path.DirectorySeparatorChar}parser-input-files.tar.bz2";
7979
if (File.Exists(tarArchiveName))

0 commit comments

Comments
 (0)