From 3e1da7c52d1af7c279201aab25cfbe02497113ed Mon Sep 17 00:00:00 2001 From: Stepan Legachev Date: Thu, 30 Dec 2021 11:13:34 +0800 Subject: [PATCH] fix: invalid escape sequence: \; https://github.com/bazelbuild/bazel/issues/8380 --- defs.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defs.bzl b/defs.bzl index 6b9139a..2153643 100644 --- a/defs.bzl +++ b/defs.bzl @@ -102,7 +102,7 @@ def _sonarqube_impl(ctx): #"for f in $(find $(dirname %s) -type l); do echo $f; done" % sq_properties_file.short_path, #"echo '... done.'", # - "find $(dirname %s) -type l -exec bash -c 'ln -f $(readlink $0) $0' {} \;" % sq_properties_file.short_path, + "find $(dirname %s) -type l -exec bash -c 'ln -f $(readlink $0) $0' {} \\;" % sq_properties_file.short_path, "exec %s -Dproject.settings=%s $@" % (ctx.executable.sonar_scanner.short_path, sq_properties_file.short_path), ]), is_executable = True,