Alex Nordlund

Results 385 comments of Alex Nordlund

There's some other workarounds in https://github.com/gradle/gradle/issues/3525 as well, but with [symbolic links being resolved to their file instead of being stored](https://docs.gradle.org/7.3.3/userguide/common_caching_problems.html#symbolic_links) I'm not sure we ever could support the build...

the best solution I can think of right now is adding a configurable override on what's to be fetched, that'd mean you'd have to write the logic for determining what...

@amir1376 this is https://github.com/gradle/gradle/issues/7603

@Cerber-Ursi I'm unable to reproduce that issue using the example project, with or without download enabled, with or without a `npmVersion` set https://github.com/node-gradle/gradle-node-plugin/blob/main/examples/simple-node/npm/build.gradle Can you open a separate issue and...

@MKaciuba just to confirm, that's getting `Cannot run program "npm" (in directory ...` when running with `download = false` right?

@fkfhain I'm thinking something more along the lines of ```groovy node { nodeArchitectureOverride.set({ if (Os.isFamily(Os.FAMILY_MAC)) { return "darwin-x64" } return null }) } ```

The only two arguments I can think of going against it is that: 1. it's work and 2. if we don't offer a way to override that using a custom...

I tried messing around with `dependencySubstitutions` to see if it's possible to work around this from the user's end. Couldn't get it to work. We should just handle it on...

I get how frustrating this can be, but this is really an issue that needs to be solved upstreams as this is caused by a bug in Gradle If you're...

Are you using `download = true` or should it run with local node? And which task is failing? Assuming it's `download = true`, can you run your build with `--info`...