From 90328fb8e033ad72dcb1a546c839561b509a0eb0 Mon Sep 17 00:00:00 2001 From: ober Date: Tue, 24 Oct 2023 06:38:27 -0600 Subject: [PATCH] Use full posix, and make bsd's happy --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 511ff6edc..ed1efd862 100755 --- a/install.sh +++ b/install.sh @@ -40,7 +40,7 @@ install_src_files() { local dest="${2}" local oldpwd="$(pwd)" cd "${src}" - for f in $(find . -name \*.ss -or -name \*.ssi -or -name \*.scm -or -name \*.c | egrep -v "/[.]gerbil" | grep -v build.ss); do + for f in $(find . -name \*.ss -o -name \*.ssi -o -name \*.scm -o -name \*.c | egrep -v "/[.]gerbil" | grep -v build.ss); do mkdir -p $(dirname "${dest}/${f}") || die cp -v "${f}" "${dest}/${f}" || die done