mirror of
https://github.com/vgough/encfs.git
synced 2024-11-28 10:54:15 +01:00
11 lines
156 B
Bash
11 lines
156 B
Bash
|
#!/bin/bash -eu
|
||
|
|
||
|
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
|
||
|
sudo modprobe fuse
|
||
|
fi
|
||
|
|
||
|
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
|
||
|
brew cask install osxfuse
|
||
|
fi
|
||
|
|