Docker: Fix git perms issue during copter build

This commit is contained in:
Henry Warhurst 2024-10-17 22:32:54 +02:00 committed by Peter Barker
parent ebfecaddac
commit 4c9da021eb
1 changed files with 3 additions and 0 deletions

View File

@ -39,6 +39,9 @@ RUN SKIP_AP_EXT_ENV=$SKIP_AP_EXT_ENV SKIP_AP_GRAPHIC_ENV=$SKIP_AP_GRAPHIC_ENV SK
USER=${USER_NAME} \
Tools/environment_install/install-prereqs-ubuntu.sh -y
# Rectify git perms issue that seems to crop up only on OSX
RUN git config --global --add safe.directory $PWD
# Check that local/bin are in PATH for pip --user installed package
RUN echo "if [ -d \"\$HOME/.local/bin\" ] ; then\nPATH=\"\$HOME/.local/bin:\$PATH\"\nfi" >> ~/.ardupilot_env