From ac319bb6d3440fdd80a87b7998293702ed5530a9 Mon Sep 17 00:00:00 2001 From: Alex Duchesne Date: Tue, 30 Jan 2024 17:10:26 -0500 Subject: [PATCH] Attempt to fix github actions #2 Something must have changed in the docker container or github actions, there's an error because an esp-idf script expects bash and docker uses sh --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 017c5eb0..611ccf81 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN cd /opt/esp/idf && \ patch --ignore-whitespace -p1 -i "/app/tools/patches/sdcard-fix (esp-idf 4.2 and 4.3).diff" # Build -RUN chsh -s /bin/bash +SHELL ["/bin/bash", "-c"] RUN . /opt/esp/idf/export.sh && \ python rg_tool.py --target=odroid-go release && \ python rg_tool.py --target=mrgc-g32 release