Bug 1889947 - fix logic error causing mobile first-run experiments to not get updates. r=gbrown DONTBUILD

Differential Revision: https://phabricator.services.mozilla.com/D206776
This commit is contained in:
Julien Cristau 2024-04-05 15:37:37 +00:00
parent ff8a75a4a1
commit e235514e4c

View file

@ -415,10 +415,10 @@ function compare_mobile_experiments() {
( ${DIFF} fenix-experiments-old.json fenix-experiments-new.json; ${DIFF} focus-experiments-old.json focus-experiments-new.json ) > "${EXPERIMENTER_DIFF_ARTIFACT}" ( ${DIFF} fenix-experiments-old.json fenix-experiments-new.json; ${DIFF} focus-experiments-old.json focus-experiments-new.json ) > "${EXPERIMENTER_DIFF_ARTIFACT}"
if [ -s "${EXPERIMENTER_DIFF_ARTIFACT}" ]; then if [ -s "${EXPERIMENTER_DIFF_ARTIFACT}" ]; then
return 0
else
# no change # no change
return 1 return 1
else
return 0
fi fi
} }