changeset 28748c0d0704 in modules/stock_lot_unit:default details: https://hg.tryton.org/modules/stock_lot_unit?cmd=changeset;node=28748c0d0704 description: Replace echo with interpretation of backslash escapes by multiple commands
drone escape the echo option. issue8830 diffstat: .drone.yml | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diffs (15 lines): diff -r aa788ec89f93 -r 28748c0d0704 .drone.yml --- a/.drone.yml Tue Dec 03 22:59:32 2019 +0100 +++ b/.drone.yml Wed Dec 04 09:53:37 2019 +0100 @@ -15,7 +15,10 @@ - TOX_TESTENV_PASSENV=CFLAGS DB_CACHE - POSTGRESQL_URI=postgresql://postgres@postgresql:5432/ commands: - - echo -e "[repositories]\nhgext.share =\n[share]\npool = /root/.hgcache\n" >> /root/.hgrc + - echo "[repositories]" >> /root/.hgrc + - echo "hgext.share =" >> /root/.hgrc + - echo "[share]" >> /root/.hgrc + - echo "pool = /root/.hgcache" >> /root/.hgrc - pip install tox - tox -e "${TOXENV}-${DATABASE}" volumes: