diff --git a/AUTHORS.rst b/AUTHORS.rst index 5e4aa600..fec508b8 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -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 =================== diff --git a/runtests/runtests.js b/runtests/runtests.js index 9a74749c..ee4fbbfe 100644 --- a/runtests/runtests.js +++ b/runtests/runtests.js @@ -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);