Closed JesseCrocker closed 8 years ago
Could you update spaceship using sudo gem update spaceship
or bundle update
if you use bundler
I got the same error today. sudo gem update spaceship
fixed it. Thanks @KrauseFx! :thumbsup:
Thanks everyone :+1:
This issue was migrated to https://github.com/fastlane/fastlane/issues/2126. Please post all further comments there.
fastlane
is now a mono repo, you can read more about the change in our blog post. All tools are now available in the fastlane main repo :rocket:
Using deliver 1.7.0
stacktrace:
The problem seems to be in spaceship/tunes/application.rb in the live_version function, and i fixed it by changing
if raw_data['versions'].count == 1
toif raw_data['versions'] && raw_data['versions'].count == 1
, but i dont know enough ruby, or have enough familiarity with the code base to know if this is an acceptable fix.