diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-06-26 22:31:58 +0200 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-06-26 22:32:09 +0200 |
| commit | 876ff24ac0b96ce8e0292229842b4a403990cee1 (patch) | |
| tree | d2a04e211f37c5d7908a5329b08b94f4d5ad533e /.gitlab | |
| parent | f6f15297e9a03c62a8081a91e6e94144f640beea (diff) | |
don't mistake deleted files as changed files, re #5331
Diffstat (limited to '.gitlab')
| -rw-r--r-- | .gitlab/scripts/ci-helpers.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab/scripts/ci-helpers.sh b/.gitlab/scripts/ci-helpers.sh index e322112..b07b7ad 100644 --- a/.gitlab/scripts/ci-helpers.sh +++ b/.gitlab/scripts/ci-helpers.sh @@ -12,5 +12,5 @@ get_changed_files() { fetch_main - git diff --name-only "$base_branch"...HEAD -- "$@" | grep -v '^$' || true + git diff --name-only --diff-filter=AM "$base_branch"...HEAD -- "$@" | grep -v '^$' || true } |
