Skip to content

Commit

Permalink
find -perm -a=x
Browse files Browse the repository at this point in the history
  • Loading branch information
dex4er committed Oct 2, 2023
1 parent 4d2d5c5 commit d24ef01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/install
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function install() {
mkdir -p "${bin_install_path}"

tar zxf "${download_filename}"
find "${tmp_download_dir}" -type f -perm /a=x -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
}
Expand Down

0 comments on commit d24ef01

Please sign in to comment.