Closed stefanv closed 3 years ago
LGTM, thanks
I was too quick to commit. Somehow the $DIST env variable is not getting thorugh to the scripts. The images that were uploaded to https://hub.docker.com/u/multibuild have an empty $DIST descriptor, they are also missing the _
character that I would have expected for $DIST_$PLATFORM if $DIST were empty
@mattip Do you know how $PLATFORM makes it through to deploy.sh
?
Maybe the '' is tripping up the shell, can you try `${DIST}${PLATFORM}` ? For instance, this works with the braces but is broken without
$ ABC=hello.14 DEF=world echo x${ABC}_${DEF}y
xhello.14_worldy
I bet that's it.
I don't have an easy way to check this, so I'll let your eyes be my safeguard.
Closes #21