Skip to content

Commit 3a4169f

Browse files
committed
Retain release notes if no_log:true
1 parent 9d9c738 commit 3a4169f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

fastlane/Fastfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ lane :bump do |options|
6161
unless version.nil? || version.empty?
6262
xcconfig_set("../#{xcconfig}", "MARKETING_VERSION", version)
6363
end
64-
system("../scripts/copy-release-notes.sh")
64+
unless options[:no_log]
65+
system("../scripts/copy-release-notes.sh")
66+
end
6567
git_commit(
6668
path: [
6769
xcconfig,

0 commit comments

Comments
 (0)