Heroku creates an error while deploying my application. Can't understand it

My GIT commit and push commands pass successfully, but my application does not start and tells me that a server error has occurred. I checked the status of Heroku server and it works with optimal performance.

Here is the error I found in my logs:

C:/Documents and Settings/Administrator/.heroku/client/lib/heroku/updater.rb:155 :in `spawn': No such file or directory - C:/Program Files/Heroku/bin/heroku upda te (Errno::ENOENT) from C:/Documents and Settings/Administrator/.heroku/client/lib/heroku/u pdater.rb:155:in `background_update!' from C:/Program Files/Heroku/lib/heroku/updater.rb:135:in `inject_libpat h' from C:/Program Files/Heroku/bin/heroku:19:in `<main>' 

I do not understand what it means. Can you help me?

+2
source share
2 answers

The problem seems to be related to version 2.32.13. Removing this version and installing 2.32.14 solved the problem in Windows XP.

+1
source

according to this post (by Ubuntu) uninstalling and installing should fix the problem

0
source

Source: https://habr.com/ru/post/1440042/


All Articles