Heroku LoadError: libruby.so.2.2

后端 未结 3 883
南方客
南方客 2021-01-13 18:18

When I tried to push my changes to a staging dyno on Heroku I got this message when it\'s building:

$ git push staging
.
.
.
remote: -----> Installing dep         


        
3条回答
  •  花落未央
    2021-01-13 18:43

    The cache in heroku dyno needs to be purged. Heroku made a plugin that can do just that. Install it:

    $ heroku plugins:install heroku-repo

    And run:

    $ heroku repo:purge_cache -a $APPNAME

    Then deploy again.

提交回复
热议问题