-
-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
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
adds tmpdir
option to fix #203
#230
adds tmpdir
option to fix #203
#230
Conversation
Thanks for the PR! Perhaps add a test to make sure the option works as expected? |
@malept Any idea what might have caused the one test to fail? Doesn't seem related to my changes. |
That particular test intermittently fails (and I don't know why). Don't worry about it. |
Alright, thanks. I'll add a test in a bit and push again. |
@malept Test added |
@@ -207,6 +207,10 @@ If the file extension is omitted, it is auto-completed to the correct extension | |||
|
|||
Whether SSL certificates are required to be valid when downloading Electron. **Defaults to `true`**. | |||
|
|||
`tmpdir` - *String* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor nit - this is the wrong indentation. There should be no spaces between the beginning of the line and the option name. The description's indentation is fine.
Would you mind rebasing and squashing the commits after you fix the minor docs issue? |
ab9042b
to
ee32807
Compare
ee32807
to
b2ce937
Compare
@malept Whitespace fixed and commits squashed |
…tory adds `tmpdir` option to fix #203
Thanks! |
Custom temporary directory can be supplied in
opts.tmpdir
or from the command line switch--tmpdir
. This address issue #203.