Skip to content

Commit

Permalink
Fix git sanity checks
Browse files Browse the repository at this point in the history
  • Loading branch information
d4rken committed Jul 23, 2022
1 parent fb86cfe commit 8759112
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,10 @@ default_platform :android

platform :android do
before_all do
#ensure_git_status_clean
ensure_git_status_clean
end

lane :beta do
ensure_git_branch(branch: 'master')
git_pull
gradle(task: 'clean assembleBeta')
sh "bash ./remove_unsupported_languages.sh"
Expand All @@ -36,7 +35,6 @@ platform :android do
end

lane :production do
ensure_git_branch(branch: 'master')
git_pull
gradle(task: 'clean assembleRelease')
sh "bash ./remove_unsupported_languages.sh"
Expand Down

0 comments on commit 8759112

Please sign in to comment.