Open gabrielstuff opened 8 years ago
Error: EXDEV, cross-device link not permitted
This happens because shell.js can't handle correctly the mv or cp operation from a disk to an other one. A solution consist in using :
shell.js
var run=require('sync-runner'); run("mv '" + src + "' '" + thisDest + "'");
This has been proved to work. I'll pull request later.
+1 Same issue On Mint Linux x64
Error: EXDEV, cross-device link not permitted
This happens because
shell.js
can't handle correctly the mv or cp operation from a disk to an other one. A solution consist in using :This has been proved to work. I'll pull request later.