mirror of
https://github.com/containers/podman-compose.git
synced 2025-06-25 22:41:34 +02:00
the commit 38b13a3 ("Use asyncio for subprocess calls") broke the way exit codes are reported from the podman compose build command. The tasks are awaited as they finish which means that if a later build finishes sucessfully after a failing build, it overwrites status. Previously the `parse_return_code` function would skip updating the status if the new return code was zero, but in removing it, this logic was not carried forward. Fixes: 38b13a3 ("Use asyncio for subprocess calls") Signed-off-by: charliemirabile <46761267+charliemirabile@users.noreply.github.com>
4 lines
120 B
Docker
4 lines
120 B
Docker
FROM busybox
|
|
#ensure that this build finishes second so that it has a chance to overwrite the return code
|
|
RUN sleep 0.5
|