Skip to content
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

Update Laravel alias to use the correct path for Composer global binaries. #2275

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aliases/available/laravel.aliases.bash
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ about-alias 'laravel artisan abbreviations'

# A list of useful laravel aliases

alias laravel='${HOME?}/.composer/vendor/bin/laravel'
alias laravel='${HOME?}/.config/composer/vendor/bin/laravel'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any chance some users still use the old location on older installations and will somehow lose functionality? I have a feeling this can benefit from an "if" and a fallback location if an older installation is found.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

# asset
alias a:apub='php artisan asset:publish'

Expand Down
Loading