diff options
author | Josef Schlehofer <pepe.schlehofer@gmail.com> | 2020-10-16 17:40:17 +0200 |
---|---|---|
committer | Paul Spooren <mail@aparcar.org> | 2020-10-16 08:15:53 -1000 |
commit | afca2f2a71e14a5abb0ad9aaa4dca8eeed98563b (patch) | |
tree | 41adc800ff0adedd2b30584eb8a8768468d39d18 /.github | |
parent | 28c075d2c870004f5c4fbf40d6835aeee6771d21 (diff) |
CI: fix grammar typo when test is succesful
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
Diffstat (limited to '.github')
-rwxr-xr-x | .github/workflows/entrypoint.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/entrypoint.sh b/.github/workflows/entrypoint.sh index 37fb37323..d7d4ecd0e 100755 --- a/.github/workflows/entrypoint.sh +++ b/.github/workflows/entrypoint.sh @@ -26,7 +26,7 @@ for PKG in /ci/*.ipk; do if [ -f "$TEST_SCRIPT" ]; then echo "Use package specific test.sh" if sh "$TEST_SCRIPT" "$PKG_NAME" "$PKG_VERSION"; then - echo "Test successfull" + echo "Test succesful" else echo "Test failed" exit 1 |