-
Notifications
You must be signed in to change notification settings - Fork 5
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
Don't include a literal ~ in PATH #17
Comments
anandthakker
pushed a commit
to mapbox/mapbox-gl-js
that referenced
this issue
May 1, 2018
anandthakker
added a commit
to mapbox/mapbox-gl-js
that referenced
this issue
May 1, 2018
* Ensure style spec is published with build Closes #6433 Closes #6574 * Consolidate build unit test commands * Workaround CI image path bash/sh issue mapbox/mbgl-ci-images#17
anandthakker
added a commit
to mapbox/mapbox-gl-js
that referenced
this issue
May 3, 2018
Cherry pick 478dd56 from master * Ensure style spec is published with build Closes #6433 Closes #6574 * Consolidate build unit test commands * Workaround CI image path bash/sh issue mapbox/mbgl-ci-images#17
anandthakker
added a commit
to mapbox/mapbox-gl-js
that referenced
this issue
May 3, 2018
* Fix style-spec build (#6575) * Ensure style-spec is published with mapbox-gl (#6586) Cherry pick 478dd56 from master * Ensure style spec is published with build Closes #6433 Closes #6574 * Consolidate build unit test commands * Workaround CI image path bash/sh issue mapbox/mbgl-ci-images#17 * Bump style-spec version to 12.0.0-pre.1 (#6595) * Use named exports in style-spec.js (#6602) Cherry pick e83054f from master Fixes #6601 * Ignore whole /dist/ directory Done in master with e83054f
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The literal
~
here is problematic:mbgl-ci-images/base/Dockerfile
Line 38 in 7d2403f
which yarn
to fail, even though (in bash),yarn
itself will work.yarn
not to work at all in /bin/sh, due to some obscure difference between sh and bash as to when tilde expansion takes place.It should be replaced with
$HOME
or/root
.The text was updated successfully, but these errors were encountered: