The linkSKAdNetwork.sh post-install script is breaking yarn install on our (linux-based) CI environment, and would probably also break on a Linux development environment (I don't have one available to test, but I don't think there is a Linux version of the plutil command).
I'm thinking the script could be updated with the following logic:
Test whether the plutil command is available using which
If the command is not available, output a message telling the user that the SKAdNetwork could not be autolinked and that they have to manually check that the property is present in their info.plist
If the command is available, keep going with the current implementation
Hi,
The linkSKAdNetwork.sh post-install script is breaking
yarn install
on our (linux-based) CI environment, and would probably also break on a Linux development environment (I don't have one available to test, but I don't think there is a Linux version of theplutil
command).I'm thinking the script could be updated with the following logic:
which
Would you accept a PR implementing this logic?
Thanks a lot!