Which is the correct repository for the laravel.build script? #37417
Unanswered
unikitty37
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When running
curl -s 'https://laravel.build/whatever'
, it returns a bash script that contains this:docker run --rm \ -v $(pwd):/opt
but this fails if the current path contains a folder with a space in the name. The fix is simple:
-v "$(pwd):/opt"
but I can't find which of the many repositories this is in so I can submit a PR.Could somebody please point me in the right direction?
Beta Was this translation helpful? Give feedback.
All reactions