fix touch of multiple test files
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Kim Oliver Drechsel 2021-09-21 18:35:39 +02:00
parent abcf01887c
commit 493b295230

View File

@ -23,7 +23,7 @@ steps:
commands: commands:
- /bin/bash - /bin/bash
- . $HOME/.bashrc - . $HOME/.bashrc
- touch /tmp/testfile{1..4} - for i in 1 2 3 4; do touch /tmp/testfile$i; done
- ls -l /tmp/testfile* - ls -l /tmp/testfile*
- trash /tmp/testfile* - trash /tmp/testfile*
- ls -l /tmp/testfile* - ls -l /tmp/testfile*
@ -40,7 +40,7 @@ steps:
commands: commands:
- /bin/bash - /bin/bash
- . $HOME/.bashrc - . $HOME/.bashrc
- touch /tmp/testfile{1..4} - for i in 1 2 3 4; do touch /tmp/testfile$i; done
- ls -l /tmp/testfile* - ls -l /tmp/testfile*
- trash /tmp/testfile* - trash /tmp/testfile*
- ls -l /tmp/testfile* - ls -l /tmp/testfile*
@ -58,7 +58,7 @@ steps:
commands: commands:
- /bin/bash - /bin/bash
- . $HOME/.bashrc - . $HOME/.bashrc
- touch /tmp/testfile{1..4} - for i in 1 2 3 4; do touch /tmp/testfile$i; done
- ls -l /tmp/testfile* - ls -l /tmp/testfile*
- trash /tmp/testfile* - trash /tmp/testfile*
- ls -l /tmp/testfile* - ls -l /tmp/testfile*