- Fix to silence test for ede error output to the console from the

test setup script.
This commit is contained in:
W.C.A. Wijngaards 2022-05-20 09:08:29 +02:00
parent 7e506bb477
commit 714200ad0e
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
20 May 2022: Wouter
- Fix to silence test for ede error output to the console from the
test setup script.
18 May 2022: George 18 May 2022: George
- Fix typos in config_set_option for the 'num-threads' and - Fix typos in config_set_option for the 'num-threads' and
'ede-serve-expired' options. 'ede-serve-expired' options.

View file

@ -9,7 +9,7 @@ echo ". IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237
# differentiate for MacOS with "gdate" # differentiate for MacOS with "gdate"
DATE=date DATE=date
which gdate > /dev/null && DATE=gdate which gdate > /dev/null 2>&1 && DATE=gdate
ONEMONTHAGO=`$DATE -d 'now - 1 month' +%Y%m%d` ONEMONTHAGO=`$DATE -d 'now - 1 month' +%Y%m%d`
YESTERDAY=`$DATE -d 'now - 2 days' +%Y%m%d` YESTERDAY=`$DATE -d 'now - 2 days' +%Y%m%d`