mirror of
https://github.com/vgough/encfs.git
synced 2024-11-21 23:43:26 +01:00
fe4b2a6345
Simplifies compiling encfs and is also used by test.sh
16 lines
103 B
Bash
Executable File
16 lines
103 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
if [ ! -d build ]
|
|
then
|
|
mkdir build
|
|
cd build
|
|
cmake ..
|
|
else
|
|
cd build
|
|
fi
|
|
|
|
make
|
|
|