-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue with hyphens in build args used in FROM #3
Comments
yeah definitely a bash-ism:
vs
|
So changing line 57 to:
seems to resolve this but I'm not sure of the wider implications of removing the |
Changing line 57 didn't fix it for me. I had to manually go in and change it so that it wasn't using an argument. That does seem to be the issue though. Good job! |
Hi thanks for a great tool.
I'm taking the
Dockerfile
anddevcontainer.json
from here.The
ARG
for setting the${VARIANT}
contains a dash which seems to create a problem with the passing of command-line args in this script.Here is the error I get:
and the debug output is:
I suspect this is a bash-ism with some quoting...
The text was updated successfully, but these errors were encountered: