From 493b295230200d6c383863f8944bc8ad3f0952d6 Mon Sep 17 00:00:00 2001 From: Kim Date: Tue, 21 Sep 2021 18:35:39 +0200 Subject: [PATCH] fix touch of multiple test files --- .drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 538f1e4..4f405f6 100644 --- a/.drone.yml +++ b/.drone.yml @@ -23,7 +23,7 @@ steps: commands: - /bin/bash - . $HOME/.bashrc - - touch /tmp/testfile{1..4} + - for i in 1 2 3 4; do touch /tmp/testfile$i; done - ls -l /tmp/testfile* - trash /tmp/testfile* - ls -l /tmp/testfile* @@ -40,7 +40,7 @@ steps: commands: - /bin/bash - . $HOME/.bashrc - - touch /tmp/testfile{1..4} + - for i in 1 2 3 4; do touch /tmp/testfile$i; done - ls -l /tmp/testfile* - trash /tmp/testfile* - ls -l /tmp/testfile* @@ -58,7 +58,7 @@ steps: commands: - /bin/bash - . $HOME/.bashrc - - touch /tmp/testfile{1..4} + - for i in 1 2 3 4; do touch /tmp/testfile$i; done - ls -l /tmp/testfile* - trash /tmp/testfile* - ls -l /tmp/testfile*