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
I have a Capistrano task for rails runner remote execution:
require'shellwords'namespace:invokedodesc"Execute rails runner on a remote server"task:runnerdoifENV['COMMAND']onroles(:app)dowithincurrent_pathdowithrails_env: fetch(:rails_env)doexecute:rails,:runner,ENV['COMMAND'].shellescapeendendendelseputs"\n\nFailed! You need to specify the 'COMMAND' parameter","Usage: cap <stage> invoke:runner COMMAND=your-command"endendend
In this task, but only in this one, I would like to disable truncation. Is it possible to access to Airbrussh formatter within the task in order to set truncation to false?
The text was updated successfully, but these errors were encountered:
I have a Capistrano task for
rails runner
remote execution:In this task, but only in this one, I would like to disable truncation. Is it possible to access to Airbrussh formatter within the task in order to set truncation to false?
The text was updated successfully, but these errors were encountered: