1
私の出力をstderrにリダイレクトしたいと思います。私はがをstderrに出力をリダイレクトしたい 'auth_tester_results' ブール値がfalseの場合はrakeタスクに出力を標準エラー出力にリダイレクト
namespace :authentication do
desc "Automatically runs authentication tester and notifies in case of failure"
task :tester => :environment do
auth_tester_results = AuthenticationTester.perform
exit(auth_tester_results.success? ? 0 : 1)
end
end
を呼び出し、cronジョブ
function auth_tester {
cd /data/$1/current && bundle exec rake 'authentication:tester' 1> /dev/null
}
を持っています。どのようにそれを行うことができますか?
私の質問は、私の失敗出力をリダイレクトする方法ですstderrに。あなたの答えはstderrをstdoutにリダイレクトする方法にも役立ちます。しかし、私の失敗出力をstderrにリダイレクトする方法については、 – krishna
にお問い合わせください。アップデートをご覧ください。 – mudasobwa