Skip to content

Commit

Permalink
ddev share --subdomain should use ngrok --subdomain, fixes #4390 (#4393
Browse files Browse the repository at this point in the history
…) [skip ci]
  • Loading branch information
rfay committed Nov 21, 2022
1 parent 577efd1 commit c44ae29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/ddev/cmd/share.go
Expand Up @@ -50,7 +50,7 @@ ddev share myproject`,
if err != nil {
util.Failed("unable to get --subdomain flag: %v", err)
}
ngrokArgs = append(ngrokArgs, "-subdomain="+sub)
ngrokArgs = append(ngrokArgs, "--subdomain="+sub)
}

ngrokCmd := exec.Command(ngrokLoc, ngrokArgs...)
Expand Down

0 comments on commit c44ae29

Please sign in to comment.