Created
May 1, 2025 21:42
-
-
Save davebarkerxyz/4111276ae1fb4a7566b271bd7afed607 to your computer and use it in GitHub Desktop.
MacOS notarisation check test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
fn=`mktemp` | |
echo '#!/bin/bash' >> $fn | |
echo "echo I am $fn" >> $fn | |
chmod u+x $fn | |
time $fn | |
time $fn | |
rm $fn |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment