Skip to content

Commit 51203f9

Browse files
Fix cfgquery() in build_sanitizer.sh
Signed-off-by: Aleksandr Ivanov <[email protected]>
1 parent 7091a82 commit 51203f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/sanitizers/build_sanitizer.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -252,14 +252,14 @@ envcfgquery() {
252252
# be used to set the environment for a command.
253253
# e.g. 'asan' -> 'ASAN_OPTIONS="foo=bar:baz=baf" LSAN_OPTIONS="abc=fgh"'
254254
#
255-
"$(cfgquery " \
255+
cfgquery " \
256256
.${1}.environment | \
257257
to_entries | \
258258
map(\"\(.key)=\\\"\(.value | \
259259
to_entries | \
260260
map(\"\(.key)=\(.value)\") | \
261261
join(\":\"))\\\"\") | \
262-
join(\" \")")" |
262+
join(\" \")" |
263263
sed "s|%%SRC%%|$(realpath "${DIR_SRC_BMQ}")|g" |
264264
sed "s|%%ROOT%%|$(realpath "${DIR_ROOT}")|g"
265265
}

0 commit comments

Comments
 (0)