| commit | cef14d7d93d96f04185b909405dfd3b057209fb6 | [log] [tgz] |
|---|---|---|
| author | Godofredo Contreras <godofredoc@google.com> | Thu Jan 27 17:46:15 2022 +0000 |
| committer | CQ Bot Account <flutter-scoped@luci-project-accounts.iam.gserviceaccount.com> | Thu Jan 27 17:46:15 2022 +0000 |
| tree | 717419f13489640c4d7046d155eba5f0a17de702 | |
| parent | 49515b55f8e52fac2d9b5219f79f6e404c394aaa [diff] |
Fix error in customer testing script. There was an error in the bash script running the customer tests. Change-Id: If6414fcaf221372e51727c3f9a4962182dbcd0cc Reviewed-on: https://flutter-review.googlesource.com/c/recipes/+/25920 Reviewed-by: Kevin Chisholm <kevinjchisholm@google.com> Reviewed-by: Casey Hillers <chillers@google.com> Commit-Queue: Godofredo Contreras <godofredoc@google.com>
diff --git a/recipe_modules/adhoc_validation/resources/customer_testing.sh b/recipe_modules/adhoc_validation/resources/customer_testing.sh index 8e4106d..5dbf91b 100644 --- a/recipe_modules/adhoc_validation/resources/customer_testing.sh +++ b/recipe_modules/adhoc_validation/resources/customer_testing.sh
@@ -8,7 +8,7 @@ # Customer testing require both master and the branch # under test to be checkout out. -if [$GIT_BRANCH != 'master'] +if [ "$GIT_BRANCH" != 'master' ] then git fetch origin master git checkout master