-
Notifications
You must be signed in to change notification settings - Fork 727
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
rc: Fix calls to mktemp
#1429
rc: Fix calls to mktemp
#1429
Conversation
Allow `mktemp` to make use of the `TMPDIR` environment variable when calling it with a template. Don't use the deprecated `-t` flag.
2e4863e
to
d113d52
Compare
This PR breaks all the modified scripts on macOS. Example for lint.kak:
|
So the mac implementation excepts a |
Can we just use |
I think this will work, I'll adapt my changes (although |
It's working with just |
It doesn't on all versions, i.e. on OS X 10.10.5. |
Whats the problem there ? |
It simply shows a usage message apparently, the template was probably made optional in recent versions. |
Follow up in #1449. |
Allow
mktemp
to make use of theTMPDIR
environment variable whencalling it with a template.
Don't use the deprecated
-t
flag.