Skip to content

Commit

Permalink
[CI] [Debian] sudo work around broken git config (#1949)
Browse files Browse the repository at this point in the history
So that the sudo make install step also works
  • Loading branch information
JasonGross authored Aug 30, 2024
1 parent 3bf25e3 commit 107c351
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/coq-debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ jobs:
with:
submodules: recursive
- name: work around broken git config
run: git config --global --add safe.directory "*"
run: |
git config --global --add safe.directory "*"
sudo git config --global --add safe.directory "*"
- name: container build params
run: etc/ci/describe-system-config.sh
- name: make deps
Expand Down

0 comments on commit 107c351

Please sign in to comment.