File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -167,19 +167,19 @@ private_lane :build_for_screengrab do
167
167
end
168
168
169
169
private_lane :checkReleaseRequirements_common do
170
- sh ( "if ! command -v fdroid &>/dev/null; then echo 'fdroid command not found' ; exit 1 ; " )
170
+ sh ( "if ! command -v fdroid &>/dev/null; then echo 'fdroid command not found' && exit 1; fi " )
171
171
end
172
172
173
173
private_lane :checkReleaseRequirements_RC do
174
174
checkReleaseRequirements_common ( )
175
- sh ( "if ! command -v fdroidMergeRequestRC &>/dev/null; then echo 'fdroidMergeRequestRC command not found'; exit 1;" )
176
- sh ( "if ! command -v createChangelogPullRequestRC &>/dev/null; then echo 'createChangelogPullRequestRC command not found'; exit 1;" )
175
+ sh ( "if ! command -v fdroidMergeRequestRC &>/dev/null; then echo 'fdroidMergeRequestRC command not found'; exit 1; fi " )
176
+ sh ( "if ! command -v createChangelogPullRequestRC &>/dev/null; then echo 'createChangelogPullRequestRC command not found'; exit 1; fi " )
177
177
end
178
178
179
179
private_lane :checkReleaseRequirements_Final do
180
180
checkReleaseRequirements_common ( )
181
- sh ( "if ! command -v fdroidMergeRequestFinal &>/dev/null; then echo 'fdroidMergeRequestFinal command not found'; exit 1;" )
182
- sh ( "if ! command -v createChangelogPullRequestFinal &>/dev/null; then echo 'createChangelogPullRequestFinal command not found'; exit 1;" )
181
+ sh ( "if ! command -v fdroidMergeRequestFinal &>/dev/null; then echo 'fdroidMergeRequestFinal command not found'; exit 1; fi " )
182
+ sh ( "if ! command -v createChangelogPullRequestFinal &>/dev/null; then echo 'createChangelogPullRequestFinal command not found'; exit 1; fi " )
183
183
end
184
184
185
185
private_lane :createChangelogPullRequest_RC do |options |
You can’t perform that action at this time.
0 commit comments