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 5271c2d commit 20f014bCopy full SHA for 20f014b
extensions/ccache-remote.sh
@@ -227,7 +227,7 @@ function kernel_make_config__add_ccache_remote_storage() {
227
for var in "${CCACHE_PASSTHROUGH_VARS[@]}"; do
228
val="${!var}"
229
if [[ -n "${val}" ]]; then
230
- common_make_envs+=("${var}='${val}'")
+ common_make_envs+=("${var}=${val@Q}")
231
display_alert "Kernel make: ${var}" "${val}" "debug"
232
fi
233
done
@@ -240,7 +240,7 @@ function uboot_make_config__add_ccache_remote_storage() {
240
241
242
243
- uboot_make_envs+=("${var}='${val}'")
+ uboot_make_envs+=("${var}=${val@Q}")
244
display_alert "U-boot make: ${var}" "${val}" "debug"
245
246
0 commit comments