Skip to content
Snippets Groups Projects
Commit c309462d authored by Martin Schroschk's avatar Martin Schroschk
Browse files

Refactor script: Do not check removed scripts

parent 1972d6a1
No related branches found
No related tags found
2 merge requests!1138Automated merge from preview to main,!1129Refactor script check-links
...@@ -52,7 +52,7 @@ elif [[ ! -z "${file}" ]]; then ...@@ -52,7 +52,7 @@ elif [[ ! -z "${file}" ]]; then
files=${file} files=${file}
else else
echo "Search in git-changed files." echo "Search in git-changed files."
files=`git diff --name-only "$(git merge-base HEAD "${branch}")" | grep '\.sh$' || true` files=`git diff --name-only --diff-filter=d "$(git merge-base HEAD "${branch}")" | grep '\.sh$' || true`
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment