From 9efa2fa1f94d7aaab7d3a354b454389beb1db6ab Mon Sep 17 00:00:00 2001 From: Mark Phelps <209477+markphelps@users.noreply.github.com> Date: Sun, 9 Apr 2023 13:31:17 -0400 Subject: [PATCH] chore: try to fix devcontainer build on actions (#1470) * chore: try to fix devcontainer build on actions * chore: config global * chore: quotes --- .devcontainer/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 316d9773d0..79ecbd2b8f 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -22,6 +22,8 @@ RUN curl -sSL https://deb.nodesource.com/setup_18.x | bash && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* +RUN git config --global --add safe.directory '*' + # install mage RUN git clone https://github.com/magefile/mage && \ cd mage && \