lol heroku (ulimit is not an executable on heroku)

This commit is contained in:
Konstantin Haase 2015-10-12 18:08:24 +02:00
parent 5dc0e62bf6
commit ac94487d7c

View File

@ -53,7 +53,7 @@ class Travis::Api::App
deploy_sha = File.read(".deploy-sha") if File.exist?(".deploy-sha") deploy_sha = File.read(".deploy-sha") if File.exist?(".deploy-sha")
sys_info = { sys_info = {
web_concurrency: ENV['WEB_CONCURRENCY'], web_concurrency: ENV['WEB_CONCURRENCY'],
ulimit: `ulimit -u`.to_i, ulimit: `echo "ulimit -u" | bash`.to_i,
dyno: ENV['DYNO'], dyno: ENV['DYNO'],
deploy_sha: deploy_sha deploy_sha: deploy_sha
} }