fastlane/lib/fastlane/actions/ensure_bundle_exec.rb in fastlane-2.136.0 vs fastlane/lib/fastlane/actions/ensure_bundle_exec.rb in fastlane-2.137.0
- old
+ new
@@ -8,11 +8,11 @@
def self.run(params)
return if PluginManager.new.gemfile_path.nil?
if FastlaneCore::Helper.bundler?
UI.success("Using bundled fastlane ✅")
else
- UI.user_error!("fastlane detected a Gemfile in the current directory. However it seems like you don't use `bundle exec`. Use `bundle exec fastlane #{ARGV.join(' ')}`")
+ UI.user_error!("fastlane detected a Gemfile in the current directory. However, it seems like you didn't use `bundle exec`. Use `bundle exec fastlane #{ARGV.join(' ')}` instead.")
end
end
#####################################################
# @!group Documentation
@@ -22,11 +22,11 @@
"Raises an exception if not using `bundle exec` to run fastlane"
end
def self.details
[
- "This action will check if you are using bundle exec to run fastlane.",
- "You can put it into `before_all` and make sure that fastlane is run using `bundle exec fastlane` command."
+ "This action will check if you are using `bundle exec` to run fastlane.",
+ "You can put it into `before_all` to make sure that fastlane is ran using the `bundle exec fastlane` command."
].join("\n")
end
def self.available_options
[]