Skip to content

Commit

Permalink
Improve Dumpling/Lightning compatibility (#1569)
Browse files Browse the repository at this point in the history
  • Loading branch information
dveeden authored Oct 8, 2021
1 parent a9a260a commit fadb027
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pkg/exec/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,12 @@ func launchComponent(ctx context.Context, component string, version utils.Versio
instanceDir = env.LocalPath(localdata.DataParentDir, tag)
}

if len(args) > 0 {
if args[0] == "--" {
args = args[1:]
}
}

params := &PrepareCommandParams{
Ctx: ctx,
Component: component,
Expand Down

0 comments on commit fadb027

Please sign in to comment.