From c9a78025d62c4289a7dd58c22a998ec5082f9877 Mon Sep 17 00:00:00 2001 From: edwin170 Date: Wed, 14 Aug 2024 18:04:21 -0400 Subject: [PATCH] fixed palera1n name --- downr1n.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/downr1n.sh b/downr1n.sh index 952889a..cbd8bc6 100755 --- a/downr1n.sh +++ b/downr1n.sh @@ -627,8 +627,8 @@ fi chmod +x "$dir"/* if [ "$os" = 'Darwin' ]; then - find "$dir" -type f -exec file {} \; | grep "Mach-O" | cut -d: -f1 | while read -r binaries_file; do - xattr -d com.apple.quarantine "$binaries_file" + for file in "$dir"/*; do + xattr -d com.apple.quarantine "$file" 2>/dev/null || true done fi @@ -637,7 +637,7 @@ fi # ============ printb "downr1n | Version 3.0" -printb "Created by edwin, thanks palera1, and all people creator of path file boot" +printb "Created by edwin, thanks palera1n, and all people creator of path file boot" echo "" parse_cmdline "$@"