mirror of
https://github.com/vgough/encfs.git
synced 2024-11-28 19:03:42 +01:00
10 lines
185 B
Bash
10 lines
185 B
Bash
|
sh ./build_all.sh clang++
|
||
|
if [ "$?" = "0" ];then
|
||
|
echo "Built successfully"
|
||
|
sh ./run_all.sh
|
||
|
echo "Successfully ran all samples"
|
||
|
else
|
||
|
echo "Build failed! (code: $?)"
|
||
|
exit $?
|
||
|
fi
|