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
{{ message }}
This repository was archived by the owner on Feb 17, 2020. It is now read-only.
I suddenly started getting "undefined method 'shellescape'" errors on mina deploys. The culprit is line 9 of mina-dotenv/lib/mina/dotenv/tasks.rb: echo #{dotenv.shellescape} | sed -e 's/^[ \t]*//' > #{remote_dotenv_path}
I resolved the issue by adding: require 'shellwords' to my deploy file.
You might want to consider adding require 'shellwords' to tasks.rb
I suddenly started getting "undefined method 'shellescape'" errors on mina deploys. The culprit is line 9 of mina-dotenv/lib/mina/dotenv/tasks.rb:
echo #{dotenv.shellescape} | sed -e 's/^[ \t]*//' > #{remote_dotenv_path}I resolved the issue by adding:
require 'shellwords'to my deploy file.You might want to consider adding
require 'shellwords'to tasks.rb