From 0617ab7ac7d59ac8d0f1f641a06b7f51aaa1a086 Mon Sep 17 00:00:00 2001 From: Kim Date: Tue, 21 Sep 2021 20:41:04 +0200 Subject: [PATCH] Revert "change touch command to usage in bash" This reverts commit d93cef60d396a3f167b0a014bf34e20d35b9f079. --- .drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index b060c77..9a3c07d 100644 --- a/.drone.yml +++ b/.drone.yml @@ -22,7 +22,7 @@ steps: pull: if-not-exists commands: - . $HOME/.bashrc - - touch /tmp/testfile{1..4} + - for i in 1 2 3 4; do touch /tmp/testfile$i; done - ls -l /tmp - trash /tmp/testfile* - ls -l /tmp @@ -39,7 +39,7 @@ steps: pull: if-not-exists commands: - . $HOME/.bashrc - - touch /tmp/testfile{1..4} + - for i in 1 2 3 4; do touch /tmp/testfile$i; done - ls -l /tmp - trash /tmp/testfile* - ls -l /tmp @@ -58,7 +58,7 @@ steps: pull: if-not-exists commands: - . $HOME/.bashrc - - touch /tmp/testfile{1..4} + - for i in 1 2 3 4; do touch /tmp/testfile$i; done - ls -l /tmp - trash /tmp/testfile* - ls -l /tmp