Skip to content

Commit e5dfe9e

Browse files
authored
[ci] prevent bin/console from being bundled with fastlane gem when bundle gem is run fastlane#29536
1 parent 20fd677 commit e5dfe9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fastlane.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Gem::Specification.new do |spec|
6666

6767
spec.files = Dir.glob("*/lib/**/*", File::FNM_DOTMATCH) + Dir["fastlane/swift/**/*"] + Dir["bin/*"] + Dir["*/README.md"] + %w(README.md LICENSE .yardopts) - Dir["fastlane/lib/fastlane/actions/device_grid/assets/*"] - Dir["fastlane/lib/fastlane/actions/docs/assets/*"]
6868
spec.bindir = "bin"
69-
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
69+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } - ["bin/console"]
7070
spec.require_paths = Dir["*/lib"]
7171

7272
spec.add_dependency('addressable', '>= 2.8', '< 3.0.0') # Support for URI templates

0 commit comments

Comments
 (0)