From 4d2d5c59b2bc1f54c63da566bf42a0d6ec138653 Mon Sep 17 00:00:00 2001 From: Piotr Roszatycki Date: Mon, 2 Oct 2023 21:05:15 +0200 Subject: [PATCH] find -perm /a=x --- bin/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install b/bin/install index ea47ec7..f0c29be 100755 --- a/bin/install +++ b/bin/install @@ -85,7 +85,7 @@ function install() { mkdir -p "${bin_install_path}" tar zxf "${download_filename}" - find "${tmp_download_dir}" -type f -perm +100 -print0 | xargs -0 -I {} cp -fp {} "${bin_install_path}" + find "${tmp_download_dir}" -type f -perm /a=x -print0 | xargs -0 -I {} cp -fp {} "${bin_install_path}" popd >/dev/null }