Skip to content

Commit d7ae309

Browse files
committed
-E seems to only be needed on docker-php-ext-install...
1 parent 49bdbc5 commit d7ae309

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
@@ -15,10 +15,10 @@ jobs:
1515
steps:
1616
- checkout
1717
- run: |
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
18+
sudo sh -c "printf '\ndeb http://ftp.us.debian.org/debian sid main\n' >> /etc/apt/sources.list"
19+
sudo apt-get update
2020
sudo -E docker-php-ext-install mysqli
21-
sudo -E apt-get install -y mysql-client-5.7
21+
sudo 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)