Skip to content

Commit 6ad47fa

Browse files
committedDec 11, 2020
tests: fix CI condition in download-devtools.sh (#11809 followup)
1 parent 88cb020 commit 6ad47fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎lighthouse-core/test/chromium-web-tests/download-devtools.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ then
1515

1616
git status
1717
git --no-pager log -1
18-
18+
1919
# Update to keep current.
2020
# Don't update in CI-defer to the weekly cache invalidation.
21-
if [ -n "${CI:-}" ]; then
21+
if [ -z "${CI:-}" ]; then
2222
git reset --hard
2323
git clean -fd
2424
git pull --ff-only -f origin master

0 commit comments

Comments
 (0)
Please sign in to comment.