-
-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error on rename when 'nw install' on Windows 10 64bit #16
Comments
For some reason |
nw install
on Windows 10 64bit
It happened to me when install 0.14.7-sdk. |
Seems like it's an error caused by try {
fs.renameSync(src, thisDest);
} catch (e) {
if (e.code === 'EXDEV') { // external partition
// if either of these fails, the appropriate error message will bubble
// up to the top level automatically
cp('-r', src, thisDest);
rm('-rf', src);
}
} |
Looks like it might fix it. I still get this every time I do an install. Luckily I dont do that very often! |
I was having the same issue, here's a dirty trick to fix it (basically you manually upgrade nwjs's shelljs dependency)
And then finally
EDIT:
|
|
I've tried messing around deleting the directory or opening up permissions with no luck. In the end I renamed the directory myself to get it working...
The text was updated successfully, but these errors were encountered: