Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion isign/bundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def is_info_plist_native(plist):
""" If an bundle is for native iOS, it has these properties in the Info.plist """
return (
'CFBundleSupportedPlatforms' in plist and
'iPhoneOS' in plist['CFBundleSupportedPlatforms']
any(c in plist['CFBundleSupportedPlatforms'] for c in ('iPhoneOS', 'AppleTVOS'))
)


Expand Down
3 changes: 1 addition & 2 deletions version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ pushd $(dirname $0) >/dev/null
working_dir=$PWD
name=$(basename $PWD)
popd >/dev/null
package=$(echo $name | sed 's/-/_/g')
version_json="${working_dir}/${package}/version.json"
version_json="${working_dir}/isign/version.json"

version_suffix=""
# official version
Expand Down