-
Notifications
You must be signed in to change notification settings - Fork 14
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
Failed on Windows #6
Comments
@rkbrewer I just debugged this for a current project and it ended up being an issue with the way it was searching the path on Windows machines, searching for We had it fixed and working with a local package and after prepping a PR into this repo found it was fixed in a later release: 8fcee04 -- Should be safe to use cross environment now. |
I'm still experiencing this error |
This issue happens because of how Windows parses paths. We need to remove if (destPath.indexOf('C:') !== -1) {
destPath = destPath.replace('C:', '');
} |
Any idea what's going on with Windows? Googling the error hasn't been helpful, no matter which way I hunt it down.
On a file change, gulp-slang reports a failed upload:
File Upload Failed: 500 - javax.jcr.RepositoryException: Incorrect workspace. Expecting /C. Received crx.default
I've never changed my workspace, and the same setting works on macOS machines.
The text was updated successfully, but these errors were encountered: