10 lines
162 B
Bash
Executable File
10 lines
162 B
Bash
Executable File
#! /bin/bash
|
|
set -e
|
|
|
|
# Require a path to a file
|
|
if [ $# != 1 ]; then
|
|
echo "Usage: apple-allow-binary <path>"
|
|
exit 1
|
|
fi
|
|
|
|
xattr -d com.apple.quarantine "$1" |