We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
use case where I found this:
open('https://google.com', { app: { name: apps['browserPrivate'] }, newInstance: true }
results in cliArguments being
--new,-a,google chrome,https://google.com, --args,--incognito
on mac, the order or arguments matters. replication
✅ open -na "google chrome" --args --incognito https://google.com => incognito ❌ open -na "google chrome" https://google.com --args --incognito => not incognito
open -na "google chrome" --args --incognito https://google.com
open -na "google chrome" https://google.com --args --incognito
I'm gonna speculate some of the other open issues may also result from the args being in the wrong order.
I made a PR. This worked for my use case/machine #332
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
use case where I found this:
results in cliArguments being
on mac, the order or arguments matters. replication
✅
open -na "google chrome" --args --incognito https://google.com
=> incognito❌
open -na "google chrome" https://google.com --args --incognito
=> not incognitoI'm gonna speculate some of the other open issues may also result from the args being in the wrong order.
I made a PR. This worked for my use case/machine #332
The text was updated successfully, but these errors were encountered: