encfs/ci/setup.sh

15 lines
301 B
Bash
Raw Normal View History

2017-08-08 06:38:10 +02:00
#!/bin/bash -eu
2017-08-26 08:00:11 +02:00
: ${INTEGRATION:=true}
if [[ "$INTEGRATION" == "true" ]]; then
if uname -s | grep -q Linux; then
sudo modprobe fuse
2020-02-23 16:51:15 +01:00
elif uname -s | grep -q FreeBSD; then
kldload fuse
elif uname -s | grep -q Darwin; then
brew cask install osxfuse
2020-02-23 16:45:07 +01:00
brew reinstall openssl
fi
2017-08-08 06:38:10 +02:00
fi