1
0
Fork 0

Fix GitLab CI error

Due to the incomplete entrypoint, bash doesn't want to execute scripts.
The error message it provides says:

```
/bin/sh: /bin/sh: cannot execute binary file
```

The solution is rather trivial by making the entrypoint `["/bin/bash",
"-c"]`.
This commit is contained in:
Sheogorath 2019-10-31 21:18:28 +01:00
parent 32a26d41d6
commit bafc4a302a
No known key found for this signature in database
GPG key ID: C9B1C80737B9CE18

View file

@ -2,6 +2,7 @@ image:
name: docker.io/renovate/renovate:19
entrypoint:
- "/bin/bash"
- "-c"
stages:
- CI