Fix test_version.fish for Ubuntu Noble Numbat Docker build

git_version_gen fails on Noble Numbat because modern Git refuses
to read repo-local config if owned by another user.

    fishuser@a4263f53c93e:~/fish-build$ cd /fish-source/
    fishuser@a4263f53c93e:/fish-source$ git describe --always --dirty
    fatal: detected dubious ownership in repository at '/fish-source'
    To add an exception for this directory, call:

Allow reading it (though that doesn't seem necessary here, it would be better
to ignore it).
This commit is contained in:
Johannes Altmanninger 2024-04-28 10:27:29 +02:00
parent 5152f6534d
commit a50419da1c

View file

@ -4,6 +4,7 @@
# It is the entry point for running Docker-based tests.
cd ~/fish-build
git config --global --add safe.directory /fish-source
cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug /fish-source "$@"
# Spawn a shell if FISH_RUN_SHELL_BEFORE_TESTS is set.