mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-02-03 20:29:28 -05:00
- Eagerly remove .skip mark files in between mini_tdir.sh runs in case
Some checks are pending
ci / build (push) Waiting to run
Some checks are pending
ci / build (push) Waiting to run
there has been a change on the environment.
This commit is contained in:
parent
daa016e3e4
commit
faf40c97fc
2 changed files with 11 additions and 0 deletions
|
|
@ -1,3 +1,7 @@
|
|||
3 February 2026: Yorgos
|
||||
- Eagerly remove .skip mark files in between mini_tdir.sh runs in case
|
||||
there has been a change on the environment.
|
||||
|
||||
27 January 2026: Wouter
|
||||
- Add test for allow-notify with a host name.
|
||||
|
||||
|
|
|
|||
|
|
@ -141,6 +141,13 @@ if test -f $done; then
|
|||
exit 0
|
||||
fi
|
||||
|
||||
# always clear the skip mark file in case something changed in the environment
|
||||
# in between runs
|
||||
if test -f $skip; then
|
||||
echo "minitdir $skip exists; removing."
|
||||
rm $skip
|
||||
fi
|
||||
|
||||
# Copy
|
||||
if test $quiet = 0; then
|
||||
echo "minitdir copy $1 to $dir"
|
||||
|
|
|
|||
Loading…
Reference in a new issue