Skip to content

Commit

Permalink
Run apt update before apt install
Browse files Browse the repository at this point in the history
Trying to fix recent errors on CI...
  • Loading branch information
alexcrichton committed Oct 24, 2019
1 parent 3ba5f27 commit ac1e031
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/azure-test-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ steps:
- bash: rustup target add $OTHER_TARGET
displayName: "Install cross-compile target"

- bash: sudo apt install gcc-multilib
- bash: sudo apt update -y && sudo apt install gcc-multilib -y
displayName: "Install gcc-multilib (linux)"
condition: and(succeeded(), eq(variables['Agent.OS'], 'Linux'))

Expand Down

0 comments on commit ac1e031

Please sign in to comment.