2014-01-21 23 views
0

我想部署一個buildpack到Heroku的我已經改名爲下30個字母就搞定了,但我仍然得到:Heroku buidpack名字長於30個字母?

/f/envs/r1/driver1 (master) 
$ heroku create --stack cedar https://github.com/kc1/hero-bpack-py-phant.git   
! Name must start with a letter and can only contain lowercase letters, numbers, and dashes. 
! Name is too long (maximum is 30 characters) 

我該如何解決這個問題?這裏

回答

1

的CLI是確定您的應用程序名稱是https://github.com/kc1/hero-bpack-py-phant.git

什麼,其實你需要做的是:

heroku create --stack cedar --buildpack https://github.com/kc1/hero-bpack-py-phant.git <APPNAMEHERE> 

--buildpack<APPNAMEHERE>在命令結束。

+0

謝謝,這工作。 – user61629

相關問題