We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2f8056 commit fc0d1dbCopy full SHA for fc0d1db
fastlane/Fastfile
@@ -140,9 +140,8 @@ desc "Sets the SDK version in all files"
140
141
finished = false
142
while(!finished)
143
- UI.important "[ATTENTION] Do NOT include the `-` prefix in your entry."
144
entry = prompt(text: "Type your entry for `#{type}`: ")
145
- entry = "- " + entry # Attach the - prefix
+ entry = '- ' + entry unless entry.start_with?('-') # Attach the - prefix if needed
146
changelog_changes << entry # Add line to total changes
147
148
additional_input = prompt(text: "Any additional entries for `#{type}`?", boolean: true)
0 commit comments