From 8bccd3b4bf18d6505723b1c5ae30de4bbaad126e Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Mon, 24 May 2021 14:26:20 +0200 Subject: Add contrib/findholes Utility and libs to find hole/data segments using lseek. --- build.bash | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'build.bash') diff --git a/build.bash b/build.bash index 57af9eb..427edfd 100755 --- a/build.bash +++ b/build.bash @@ -94,8 +94,9 @@ fi # Actual "go build" call for gocryptfs go build "-ldflags=$GO_LDFLAGS" "$@" # Additional binaries -(cd gocryptfs-xray; go build "-ldflags=$GO_LDFLAGS" "$@") -(cd contrib/statfs; go build "-ldflags=$GO_LDFLAGS" "$@") +for d in gocryptfs-xray contrib/statfs contrib/findholes ; do + (cd "$d"; go build "-ldflags=$GO_LDFLAGS" "$@") +done ./gocryptfs -version -- cgit v1.2.3