We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1569f4b commit d635dcaCopy full SHA for d635dca
internal/pkg_web/BUILD.bazel
@@ -31,9 +31,6 @@ nodejs_binary(
31
jasmine_node_test(
32
name = "assembler_test",
33
srcs = ["assembler_spec.js"],
34
- tags = [
35
- "fix-windows",
36
- ],
37
deps = [
38
"assembler.js",
39
],
internal/pkg_web/assembler.js
@@ -59,7 +59,8 @@ function main(params) {
59
function copy(f) {
60
if (fs.statSync(f).isDirectory()) {
61
for (const file of fs.readdirSync(f)) {
62
- copy(path.join(f, file));
+ // Change paths to posix
63
+ copy(path.join(f, file).replace(/\\/g, '/'));
64
}
65
} else {
66
const dest = path.join(outdir, relative(f));
0 commit comments