fastlane-queue/fastlane

Fix build on Travis CI

Opened this issue · 5 comments

Tests are ok, but Travis CI is broken due to some unknown change.

I will try to solve this one!

I may take a look too

Any news or progress that you may've done @sarafonseca-123 ?

First, I'm sorry about all this commits messages I'm trying find the problem in Travis. And I think find. The command @bandit -r . in Makefile is return error because insecurity.

@alvesgabriel thanks for your help. No problem with commits because you always can do a git squash in the end :)

I think the problem is not related to bandit because it started a few commits early. You can checkout any commit before bandit, for example, a8dc7bb4f1.

girol commented

@alvesgabriel , just a small tip:

When redoing a commit, you can use --amend. Imagine this scenario:

  • Do some work
  • Commit work
  • Stuff breaks
  • Fix a typo or small change related to last commit

Here, just run this:

git add <your files>
git commit --amend

It will integrate your changes to the last commit