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