You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** * Get the file system path to the Closure Library. * @return {string} Path. */exports.getLibraryPath=function(){returngetDependency('library',config.get('library_url')).replace(/\\/g,"/");};/** * Get the file system path to the Closure Compiler. * @return {string} Path. */exports.getCompilerPath=function(){returngetDependency('compiler',config.get('compiler_url')).replace(/\\/g,"/");};
The host-examples make target of ol3 currently fails on windows under Cygwin.
To fix this for windows, change https://github.com/openlayers/closure-util/blob/master/lib/util.js to always return POSIX style paths as below.