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