forked from mirrors/gecko-dev
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:
parent
ff8a75a4a1
commit
e235514e4c
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue