From 2331040dbc2933f64c41e4dd86a421c38f893724 Mon Sep 17 00:00:00 2001 From: Arkadiusz Bokowy Date: Fri, 3 Feb 2023 18:07:57 +0100 Subject: [PATCH] [Tizen] Fix QEMU runner return code processing (#24837) If not escaped, the dollar character is processed by the shell which creates Docker image. --- integrations/docker/images/chip-build-tizen-qemu/Dockerfile | 2 +- integrations/docker/images/chip-build/version | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/integrations/docker/images/chip-build-tizen-qemu/Dockerfile b/integrations/docker/images/chip-build-tizen-qemu/Dockerfile index 8d2c3abb2ecbe1..fb88bf618fd50c 100644 --- a/integrations/docker/images/chip-build-tizen-qemu/Dockerfile +++ b/integrations/docker/images/chip-build-tizen-qemu/Dockerfile @@ -158,7 +158,7 @@ RUN set -x \ "if [[ -x /mnt/chip/runner.sh ]]; then\n" \ " echo '### RUNNER START ###'\n" \ " /mnt/chip/runner.sh\n" \ - " echo '### RUNNER STOP:' $?\n" \ + " echo '### RUNNER STOP:' \$?\n" \ "else\n" \ " read -r -t 5 -p 'Press ENTER to access root shell...' && exit || echo ' timeout.'\n" \ "fi\n" \ diff --git a/integrations/docker/images/chip-build/version b/integrations/docker/images/chip-build/version index d003f9e89eb144..99220fc1406629 100644 --- a/integrations/docker/images/chip-build/version +++ b/integrations/docker/images/chip-build/version @@ -1 +1 @@ -0.6.38 Version bump reason: [Tizen] Add QEMU docker image for running tests +0.6.39 Version bump reason: [Tizen] Fixup for QEMU docker image