Skip to content

Commit 9f2504d

Browse files
authored
Fix temp file creation broken (clearlydefined#708)
1 parent 074acc6 commit 9f2504d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/baseHandler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class BaseHandler {
2727
const tmpBase = config.get('TEMPDIR') || (process.platform === 'win32' ? 'c:/temp/' : '/tmp/')
2828
return {
2929
unsafeCleanup: true,
30-
dir: tmpBase,
30+
tmpdir: tmpBase,
3131
prefix: 'cd-'
3232
}
3333
}

0 commit comments

Comments
 (0)