We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b1ad4a9 + b01c8a6 commit e7917e2Copy full SHA for e7917e2
build/ci/templates/linux-install-deps.yml
@@ -1,4 +1,15 @@
1
steps:
2
+
3
+ - bash: |
4
+ # Used to improve the install performance, since we don't need man
5
+ set -e
6
+ # Divert /usr/bin/mandb to avoid package ownership conflicts
7
+ sudo dpkg-divert --local --rename --add /usr/bin/mandb
8
+ # Replace with a no-op
9
+ echo '#!/bin/sh' | sudo tee /usr/bin/mandb >/dev/null
10
+ echo 'exit 0' | sudo tee -a /usr/bin/mandb >/dev/null
11
+ sudo chmod 755 /usr/bin/mandb
12
+ displayName: Disable man-db
13
14
- bash: |
15
sudo apt-get update
0 commit comments