Skip to content

Commit

Permalink
[Tizen] Fix QEMU runner return code processing (#24837)
Browse files Browse the repository at this point in the history
If not escaped, the dollar character is processed by the shell which
creates Docker image.
  • Loading branch information
arkq authored and pull[bot] committed Jul 14, 2023
1 parent 21c3062 commit 7520516
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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" \
Expand Down
2 changes: 1 addition & 1 deletion integrations/docker/images/chip-build/version
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 7520516

Please sign in to comment.