@engine9-io/input-tools 2.0.4 → 2.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/file/FileUtilities.js +1 -1
- package/package.json +1 -1
package/file/FileUtilities.js
CHANGED
|
@@ -810,7 +810,7 @@ Worker.prototype.move = async function ({ filename, target, remove = true }) {
|
|
|
810
810
|
await fsp.rename(filename, target);
|
|
811
811
|
} catch (e) {
|
|
812
812
|
//it may be a filesystem issue moving between items
|
|
813
|
-
debug('Assuming this is a filesystem crosslink error, ignoring ', e
|
|
813
|
+
debug('Assuming this is a filesystem crosslink error, ignoring ', e);
|
|
814
814
|
await fsp.copyFile(filename, target);
|
|
815
815
|
await fsp.unlink(filename);
|
|
816
816
|
}
|