You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Linux, paths starting in / are absolute paths, and it's very common for users to create quick demos in their /tmp/ directory (since it gets automatically cleared periodically).
composer create-project --prefer-dist laravel/laravel /tmp/my_app does not have this issue.
Steps To Reproduce
Simply run laravel new /tmp/my_app.
The text was updated successfully, but these errors were encountered:
Installer Version
5.11
Description
Running
creates a laravel app in
./tmp/my_app
.In Linux, paths starting in
/
are absolute paths, and it's very common for users to create quick demos in their/tmp/
directory (since it gets automatically cleared periodically).composer create-project --prefer-dist laravel/laravel /tmp/my_app
does not have this issue.Steps To Reproduce
Simply run
laravel new /tmp/my_app
.The text was updated successfully, but these errors were encountered: