[quote='801666022, DTS Engineer, /thread/762256?answerId=801666022#801666022']
Even if you quit and relaunch?
[/quote]
Yes, even in that case. Here is a screenshot of the Build Log. Also the ~/Library/PreferencePanes/ folder in Finder doesn't have the file.
This is the script:
PREFPANE_SRC="${BUILT_PRODUCTS_DIR}/Dynamic Notch.prefPane"
PREFPANE_DST="$HOME~/Library/PreferencePanes/"
echo "PrefPane source path: $PREFPANE_SRC"
echo "PrefPane destination path: $PREFPANE_DST"
if [ -d "$PREFPANE_SRC" ]; then
echo "Installing preference pane to ${PREFPANE_DST}" cp -R "${PREFPANE_SRC}" "${PREFPANE_DST}"
else echo "Preference pane not found: ${PREFPANE_SRC}"
exit 1
fi
Sorry, I'm inexperienced in macOS development and thanks for your patience!