Skip to content
Snippets Groups Projects
Unverified Commit 762eac73 authored by StudioEtrange's avatar StudioEtrange Committed by GitHub
Browse files

Fix retrieve token from dockerhub for docker-mods

There is a missing grep in the curl instruction to retrieve the token from DockerHub
parent 38afb2d8
No related branches found
No related tags found
No related merge requests found
......@@ -101,6 +101,7 @@ for DOCKER_MOD in "${DOCKER_MODS[@]}"; do
--silent \
--header 'GET' \
"${AUTH_URL}" \
| grep -m1 "token" \
| awk -F'"' '{print $4}' \
)"
# Determine first and only layer of image
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment