Skip to content

Commit

Permalink
Fix Windows path setting
Browse files Browse the repository at this point in the history
Signed-off-by: Manuel Buil <[email protected]>
  • Loading branch information
manuelbuil committed Apr 11, 2024
1 parent ae90974 commit 85cf0fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/pebinaryexecutor/pebinary.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func (p *PEBinaryConfig) Bootstrap(ctx context.Context, nodeConfig *config.Node,
if err != nil {
return err
}
if err := os.Setenv("PATH", execPath+":"+os.Getenv("PATH")); err != nil {
if err := os.Setenv("PATH", execPath+";"+os.Getenv("PATH")); err != nil {
return err
}

Expand Down

0 comments on commit 85cf0fb

Please sign in to comment.