Skip to content

Commit

Permalink
fix: invalid escape sequence: \;
Browse files Browse the repository at this point in the history
  • Loading branch information
siberex authored Dec 30, 2021
1 parent 9da69c5 commit 3e1da7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 3e1da7c

Please sign in to comment.