mirror of
https://github.com/vgough/encfs.git
synced 2024-11-25 01:13:12 +01:00
5f0806c5cc
git-vendor-name: easylogging git-vendor-dir: vendor/github.com/muflihun/easyloggingpp git-vendor-repository: https://github.com/muflihun/easyloggingpp git-vendor-ref: master
16 lines
241 B
Bash
Executable File
16 lines
241 B
Bash
Executable File
|
|
# Builds all files into bin/
|
|
|
|
[ -d "bin" ] || mkdir "bin"
|
|
rm -rf bin/*
|
|
|
|
find . -maxdepth 1 -type f -name '*.cpp' -exec sh compile.sh {} $1 \;
|
|
echo "Completed!"
|
|
|
|
files=$(ls -l bin/)
|
|
if [ "$files" = "total 0" ];then
|
|
exit 1
|
|
else
|
|
exit 0
|
|
fi
|