-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Composer fails to finish #92
Comments
Confirmed on CentOS with 5.6.26
|
This can be fixed by removing the unnecessary brackets around Just change line 70 in app/Console/Commands/RunTasks.php from $tasks = Models\Task::where('queued', 0)->where('active', 1)->where('next_run', '<=', (Carbon::now())->toAtomString())->get(); to $tasks = Models\Task::where('queued', 0)->where('active', 1)->where('next_run', '<=', Carbon::now()->toAtomString())->get(); |
DaneEveritt
added
bug
Something that's not working as it's intended to be.
priority: high
labels
Sep 26, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
while running composer setup
Error
On Alpine Linux 3.4
The text was updated successfully, but these errors were encountered: