Christopher Hiller
7 years ago
No known key found for this signature in database
GPG Key ID: 517E44D4799F10A6
2 changed files with
2 additions and
1 deletions
-
AUTHORS.rst
-
runtests/runtests.js
|
|
@ -49,6 +49,7 @@ and agreed to irrevocably license their contributions under the Duktape |
|
|
|
* Jakub Nowakowski (https://github.com/jimvonmoon) |
|
|
|
* Tommy Nguyen (https://github.com/tn0502) |
|
|
|
* Fabrice Fontaine (https://github.com/ffontaine) |
|
|
|
* Christopher Hiller (https://github.com/boneskull) |
|
|
|
|
|
|
|
Other contributions |
|
|
|
=================== |
|
|
|
|
|
@ -44,7 +44,7 @@ function mkTempName(ext) { |
|
|
|
function safeUnlinkSync(filePath) { |
|
|
|
try { |
|
|
|
if (filePath) { |
|
|
|
fs.unlink(filePath); |
|
|
|
fs.unlinkSync(filePath); |
|
|
|
} |
|
|
|
} catch (e) { |
|
|
|
console.log('Failed to unlink ' + filePath + ' (ignoring): ' + e); |
|
|
|