blob: c972b69721e37eae223d664247007c0b4cbb6347 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
# before_install script for Travis-CI
sudo apt-get update -qq
sudo apt-get install -qq swig
if [[ "$WITH_OPTIONAL_DEPS" == "yes" ]]; then
sudo apt-get install -qq python-selinux python-pylibacl
fi
|