mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
df7bff6288
* Bazel: 0.24.0 -> 0.27.0 * Update rules_haskell for Bazel 0.27 compatibility * Update bazel-deps and bazel-watcher * Windows escape JVM flags * load commands at top of .bzl file Bazel 0.27 no longer allows load commands that are not at the beginning of the file. * Update Bazel rules * subpackage boundary * native is not defined in BUILD files * yarn: @bazel/hide-bazel-files Seems to be required since latest rules_nodejs version. Otherwise, yarn fails with errors about existing BUILD or BUILD.bazel files. * grpc-java plugin visibility * Update fat_cc_library * Nix Python3 toolchain * Iteration over depset * dev_env_package: Create symlinks one level deeper To prevent symlinking the BUILD file as well. The nested BUILD file confuses Bazel as of 0.27 and rules_nodejs cannot find the node executable anymore. * Update rules_nodejs * Add managed_directories for node_modules * hie-bios: Extract bazel-genfiles from bazel info Bazel 0.27 changed the genfiles location which breaks the hie-core test on macOS. * update cc_wrapper to Bazel 0.27 * bazel info -> bazel info bazel-genfiles * Fix typo in BUILD Co-Authored-By: Stefano Baghino <43749967+stefanobaghino-da@users.noreply.github.com>
15 lines
814 B
Diff
15 lines
814 B
Diff
diff --git a/src/java/io/bazel/rulesscala/exe/LauncherFileWriter.java b/src/java/io/bazel/rulesscala/exe/LauncherFileWriter.java
|
|
index f54a578..0d871ef 100644
|
|
--- a/src/java/io/bazel/rulesscala/exe/LauncherFileWriter.java
|
|
+++ b/src/java/io/bazel/rulesscala/exe/LauncherFileWriter.java
|
|
@@ -36,7 +36,8 @@ public class LauncherFileWriter {
|
|
.addKeyValuePair("jar_bin_path", jarBinPath)
|
|
.addKeyValuePair("java_start_class", javaStartClass)
|
|
.addKeyValuePair("classpath", classpath)
|
|
- .addJoinedValues("jvm_flags", " ", jvmFlags)
|
|
+ .addKeyValuePair("escape_jvmflags", "1")
|
|
+ .addJoinedValues("jvm_flags", "\t", jvmFlags)
|
|
.build();
|
|
|
|
Path launcher = Paths.get(Runfiles.create().rlocation("bazel_tools/tools/launcher/launcher.exe"));
|