Skip to content

Commit

Permalink
Fix output dir missing first char if -p path does not start with /
Browse files Browse the repository at this point in the history
  • Loading branch information
sk-zk committed Sep 16, 2024
1 parent c28e118 commit 78b344c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Extractor/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ static void Main(string[] args)

private static void Extract()
{
startPaths = startPaths.Select(x => x.StartsWith('/') ? x: $"/{x}").ToArray();

var scsPaths = GetScsPathsFromArgs();
foreach (var scsPath in scsPaths)
{
Expand Down

0 comments on commit 78b344c

Please sign in to comment.