Browse Source

Ignore error during installation of libwebkit2gtk

During the installation of libwebkit2gtk-4.0-dev the apparmor-profile-load script called by the post installation script of lxc-common fails due to the missing systemd-detect-virt binary, which is not present in trusty but expected to be there as we are using packages from xenial. Consequently the whole installation command is considered as failed. However the installation of libwebkit2gtk-4.0-dev is actually successful, so we can ignore this error.
sisyphus
Pascal Jufer 9 years ago
parent
commit
f1079f8a0a
  1. 2
      circle.yml

2
circle.yml

@ -14,7 +14,7 @@ dependencies:
gnome-common
- sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu/ xenial main universe"
- sudo apt-get update
- sudo DEBIAN_FRONTEND=noninteractive apt-get install -y libwebkit2gtk-4.0-dev
- sudo DEBIAN_FRONTEND=noninteractive apt-get install -y libwebkit2gtk-4.0-dev || true
test:
override:

Loading…
Cancel
Save