Closed mrusa closed 3 years ago
This is the same problem already addressed in #36. The new Passenger version 6.0.8, released yesterday, has a new output when calling passenger -v, so the regex in https://github.com/capistrano/passenger/blob/master/lib/capistrano/tasks/passenger.cap#L20 does not work anymore.
passenger -v
For me, a temporary fix was to add set :passenger_restart_with_touch, false to my deploy.rb so the regex won't get called.
set :passenger_restart_with_touch, false
deploy.rb
Now the passenger version looks like this: "Phusion Passenger(R) 6.0.8". So the regex is not working for the "(R)".
Fixed by #53
This is the same problem already addressed in #36. The new Passenger version 6.0.8, released yesterday, has a new output when calling
passenger -v
, so the regex in https://github.com/capistrano/passenger/blob/master/lib/capistrano/tasks/passenger.cap#L20 does not work anymore.For me, a temporary fix was to add
set :passenger_restart_with_touch, false
to mydeploy.rb
so the regex won't get called.