Skip to content

Commit a3d57ce

Browse files
committed
Add 'apt-get update' to Node builds
1 parent 6638938 commit a3d57ce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
- image: circleci/node:8-stretch
66
steps:
77
- checkout
8-
- run: sudo apt-get install -y python3-pip
8+
- run: sudo apt-get update && sudo apt-get install -y python3-pip
99
- run:
1010
name: Install publish dependencies
1111
command: sudo pip3 install -U awscli
@@ -19,7 +19,7 @@ jobs:
1919
- image: circleci/node:10-stretch
2020
steps:
2121
- checkout
22-
- run: sudo apt-get install -y python3-pip
22+
- run: sudo apt-get update && sudo apt-get install -y python3-pip
2323
- run:
2424
name: Install publish dependencies
2525
command: sudo pip3 install -U awscli
@@ -33,7 +33,7 @@ jobs:
3333
- image: circleci/node:12-stretch
3434
steps:
3535
- checkout
36-
- run: sudo apt-get install -y python3-pip
36+
- run: sudo apt-get update && sudo apt-get install -y python3-pip
3737
- run:
3838
name: Install publish dependencies
3939
command: sudo pip3 install -U awscli

0 commit comments

Comments
 (0)