mirror of
https://github.com/vgough/encfs.git
synced 2024-11-22 07:53:31 +01:00
11 lines
145 B
Bash
11 lines
145 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -eux
|
||
|
|
||
|
if [ ! -d build ]
|
||
|
then
|
||
|
./build.sh
|
||
|
fi
|
||
|
|
||
|
perl -MTest::Harness -e '$$Test::Harness::verbose=1; runtests @ARGV;' tests/*.t.pl
|