| tFix call to test script - fffs - fast and simple shell plugin manager | |
| git clone git://src.adamsgaard.dk/fffs | |
| Log | |
| Files | |
| Refs | |
| README | |
| LICENSE | |
| --- | |
| commit 115dbebaad4b4fe3dbaf66b216b66c807cdeb819 | |
| parent a6db79334e0c6d8ddd3680589dbb15e2a0766fc7 | |
| Author: Anders Damsgaard <[email protected]> | |
| Date: Thu, 14 Mar 2019 17:15:45 +0100 | |
| Fix call to test script | |
| Diffstat: | |
| M .gitlab-ci.yml | 6 +++--- | |
| 1 file changed, 3 insertions(+), 3 deletions(-) | |
| --- | |
| diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml | |
| t@@ -4,7 +4,7 @@ test-alpine: | |
| before_script: | |
| - apk --no-cache add git zsh bash | |
| script: | |
| - - run_tests.sh | |
| + - ./run_tests.sh | |
| test-debian: | |
| stage: test | |
| t@@ -13,7 +13,7 @@ test-debian: | |
| - apt-get update | |
| - apt-get -y install git zsh bash | |
| script: | |
| - - run_tests.sh | |
| + - ./run_tests.sh | |
| test-arch: | |
| stage: test | |
| t@@ -21,5 +21,5 @@ test-arch: | |
| before_script: | |
| - pacman -Syu --noconfirm git zsh bash | |
| script: | |
| - - run_tests.sh | |
| + - ./run_tests.sh | |