Travis with Firebase deploy TypeError: this.stream.clearLine is not a function

后端 未结 1 426
失恋的感觉
失恋的感觉 2021-01-06 09:26

I am trying to build & deploy a NodeJs + Python app with Travis.

This is approximately the folder structure (everything belongs to the same repo)



        
相关标签:
1条回答
  • 2021-01-06 10:15

    Just had the same issue, it seems that some progress bar is making some issues. Try to disable it in non interactive mode:

    after_success:
      - firebase deploy --token $FIREBASE_TOKEN --non-interactive
    

    It solved my issue, hope it helps.

    0 讨论(0)
提交回复
热议问题