Skip to content
Snippets Groups Projects
Commit 5991cb16 authored by Vincent Hatakeyama's avatar Vincent Hatakeyama
Browse files

:ambulance: do_tests.zsh: Fix unsplit log handler option

parent 55994362
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,11 @@
History
=======
20.10.1
-------
do_tests.zsh: Fix issue with log handler.
20.10.0
-------
......@@ -39,6 +44,11 @@
Change python_packages keys to allow several mount point and targets in the same package).
20.7.0
------
Enable cache for pip for dev packages.
20.6.0
------
......@@ -49,9 +59,7 @@
20.5.1
------
docker_dev_start:
- fix path for volume
docker_dev_start: Fix path for volumes.
20.5.0
------
......
......@@ -86,7 +86,9 @@
fi
if [[ -n "$INSTALL_LOG_HANDLER" ]];
then
INSTALL_ARGUMENTS="$INSTALL_ARGUMENTS --log-handler=${INSTALL_LOG_HANDLER}"
install_log_handler=( ${(s[,])INSTALL_LOG_HANDLER} )
opt=( --log-handler )
INSTALL_ARGUMENTS="$INSTALL_ARGUMENTS ${opt:^^install_log_handler}"
elif [[ -z "$INSTALL_LOG_LEVEL" ]];
then
# default to warn if nothing set
......
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