Skip to content

Commit

Permalink
fix: redundant colon
Browse files Browse the repository at this point in the history
  • Loading branch information
canstand committed Sep 16, 2024
1 parent b792be0 commit d642020
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ type PlaywrightDriver struct {
func NewDriver(options *RunOptions) (*PlaywrightDriver, error) {
baseDriverDirectory := options.DriverDirectory
if baseDriverDirectory == "" {
baseDriverDirectory := os.Getenv("PLAYWRIGHT_DRIVER_PATH")
baseDriverDirectory = os.Getenv("PLAYWRIGHT_DRIVER_PATH")
}
if baseDriverDirectory == "" {
var err error
Expand Down

0 comments on commit d642020

Please sign in to comment.