From 769f1d4b63be60a986fbd5cd3d79d952cf49a95f Mon Sep 17 00:00:00 2001 From: Conor Schaefer Date: Mon, 19 Aug 2019 11:08:05 -0700 Subject: [PATCH] CI: update apt lists for installing enchant Recent CI runs have failed to locate a package called "enchant", which likely indicates that the apt lists are out of date, whether due to docker layer caching or some other factor. Let's ensure the lists are always up to date when that step is run. (cherry picked from commit 223626ef63e3b6fef5f483f5ff55d30cadd0b455) --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f63bc1b826..90cafc9aa2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,7 @@ common-steps: - &installenchant run: name: Install enchant - command: sudo apt-get install enchant + command: sudo apt-get update && sudo apt-get install -y enchant # Python 3 (default) Docker layer caching - &createcachedir