Skip to content

Commit 49bdbc5

Browse files
committed
Add sudo -E flag
1 parent b53f722 commit 49bdbc5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
steps:
1616
- checkout
1717
- run: |
18-
sudo sh -c "printf '\ndeb http://ftp.us.debian.org/debian sid main\n' >> /etc/apt/sources.list"
19-
sudo apt-get update
20-
sudo docker-php-ext-install mysqli
21-
sudo apt-get install -y mysql-client-5.7
18+
sudo -E sh -c "printf '\ndeb http://ftp.us.debian.org/debian sid main\n' >> /etc/apt/sources.list"
19+
sudo -E apt-get update
20+
sudo -E docker-php-ext-install mysqli
21+
sudo -E apt-get install -y mysql-client-5.7
2222
- run: |
2323
echo -e "memory_limit = 1024M" | sudo tee /usr/local/etc/php/php.ini > /dev/null
2424
- run: |

0 commit comments

Comments
 (0)