mirror of
https://github.com/vgough/encfs.git
synced 2024-11-22 07:53:31 +01:00
15 lines
104 B
Bash
15 lines
104 B
Bash
#!/bin/bash -eu
|
|
|
|
if [[ ! -d build ]]
|
|
then
|
|
mkdir build
|
|
fi
|
|
|
|
cd build
|
|
cmake ..
|
|
make -j2
|
|
make test
|
|
|
|
cd ..
|
|
|