change bash invocation
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Mauro Torrez 2019-09-18 14:13:31 -03:00
parent 795121393b
commit 9cc13a7fbb

View File

@ -18,12 +18,12 @@ steps:
- name: version-minimal
image: debian:buster-slim
commands:
- bash -c 'source unit/version && echo -n "${NXT_VERSION}-minimal" > .tags'
- bash <<< 'source unit/version && echo -n "${NXT_VERSION}-minimal" > .tags'
- name: latest-minimal
image: debian:buster-slim
commands:
- bash -c 'source unit/version && echo -n ",latest-minimal" >> .tags'
- bash <<< 'source unit/version && echo -n ",latest-minimal" >> .tags'
when:
branch:
- master
@ -44,12 +44,12 @@ steps:
- name: version-php7.3
image: debian:buster-slim
commands:
- bash -c 'source unit/version && echo -n "${NXT_VERSION}-php7.3" > .tags'
- bash <<< 'source unit/version && echo -n "${NXT_VERSION}-php7.3" > .tags'
- name: latest-php7.3
image: debian:buster-slim
commands:
- bash -c 'source unit/version && echo -n ",latest-php7.3" >> .tags'
- bash <<< 'source unit/version && echo -n ",latest-php7.3" >> .tags'
when:
branch:
- master