Skip to content

Commit

Permalink
Fix string concatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
justinswart committed Apr 24, 2017
1 parent 97f724b commit 7e8f0d0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ platform :ios do

slack(
slack_url: ENV["SLACK_WEBHOOK"],
message: "Successfully uploaded"
+ " v" + get_version_number(xcodeproj: "Kickstarter.xcodeproj")
+ " (" + get_build_number(xcodeproj: "Kickstarter.xcodeproj") + ")"
+ " of the Kickstarter iOS app to iTunes Connect 🚀"
message: "Successfully uploaded" +
" v" + get_version_number(xcodeproj: "Kickstarter.xcodeproj") +
" (" + get_build_number(xcodeproj: "Kickstarter.xcodeproj") + ")" +
" of the Kickstarter iOS app to iTunes Connect 🚀"
)
end

Expand Down

0 comments on commit 7e8f0d0

Please sign in to comment.