fix: use GNU's grep instead of the default busybox's

busybox grep is too slow, its '-F -x' parameters may be buggy
This commit is contained in:
curben 2019-05-28 12:43:57 +09:30
parent cd521e22ae
commit 1ab5e6a2cc
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ image: alpine:latest # Use the latest version of Alpine Linux docker image
before_script:
# Install dependencies
- 'which ssh-agent || ( apk update && apk add openssh-client git)'
- 'which ssh-agent || ( apk update && apk add openssh-client git grep)'
# Run ssh-agent
- eval $(ssh-agent -s)