You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asterisk/tests/CI/findLibdir.sh

15 lines
151 B

#!/usr/bin/env bash
source /etc/os-release
case $ID in
centos)
echo /usr/lib64
;;
fedora)
echo /usr/lib64
;;
ubuntu)
echo /usr/lib
esac