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 f7652d7 commit 1b198e7Copy full SHA for 1b198e7
foreign_cc/private/framework.bzl
@@ -748,7 +748,9 @@ def _correct_path_variable(toolchain, env):
748
# INCLUDE) needs windows path (for passing as arguments to compiler).
749
prefix = "${EXT_BUILD_ROOT/$(printf '\072')/}/"
750
else:
751
- prefix = "\"$EXT_BUILD_ROOT\"/"
+ # Don't add extra quotes for shellcheck. The place where it gets used
752
+ # should be quoted instead.
753
+ prefix = "$EXT_BUILD_ROOT/"
754
755
# external/path becomes $EXT_BUILD_ROOT/external/path
756
path_paths = [prefix + path if path and path[1] != ":" else path for path in value.split(";")]
0 commit comments