mirror of
https://github.com/darlinghq/darling-system_cmds.git
synced 2024-11-23 12:09:40 +00:00
17 lines
322 B
Bash
17 lines
322 B
Bash
#!/bin/sh
|
|
set -e
|
|
set -x
|
|
|
|
cp "${SCRIPT_INPUT_FILE_0}" "${SCRIPT_OUTPUT_FILE_0}"
|
|
case "$PLATFORM_NAME" in
|
|
iphone*|appletv*|watch*|bridge*)
|
|
/usr/libexec/PlistBuddy -c "Add :LaunchOnlyOnce bool true" "${SCRIPT_OUTPUT_FILE_0}"
|
|
;;
|
|
macosx)
|
|
;;
|
|
*)
|
|
echo "Unsupported platform: $PLATFORM_NAME"
|
|
exit 1
|
|
;;
|
|
esac
|