Skip to content

Commit e098618

Browse files
committed
fix(ci): download chrome driver to /tmp dir
this may give the apt user access to the file to install the package
1 parent 3f0603f commit e098618

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,8 @@ jobs:
163163
- run:
164164
name: Setup Chrome
165165
command: |
166-
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
167-
sudo apt install ./google-chrome-stable_current_amd64.deb
166+
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb --directory-prefix=/tmp/
167+
sudo apt install /tmp/google-chrome-stable_current_amd64.deb
168168
169169
- run:
170170
name: "Prepare"

0 commit comments

Comments
 (0)