New upstream version 22.0.3+dfsg1
This commit is contained in:
parent
665f64a933
commit
cdc9a9fc87
334 changed files with 14525 additions and 2639 deletions
|
|
@ -45,7 +45,7 @@ parser.add_argument('-d', '--base-dir', dest='dir', default='rundir/RelWithDebIn
|
|||
parser.add_argument('-n', '--build-number', dest='build_number', default='0')
|
||||
parser.add_argument('-k', '--public-key', dest='public_key', default='OBSPublicDSAKey.pem')
|
||||
parser.add_argument('-f', '--sparkle-framework', dest='sparkle', default=None)
|
||||
parser.add_argument('-b', '--base-url', dest='base_url', default='https://builds.catchexception.org/obs-studio')
|
||||
parser.add_argument('-b', '--base-url', dest='base_url', default='https://obsproject.com/osx_update')
|
||||
parser.add_argument('-u', '--user', dest='user', default='jp9000')
|
||||
parser.add_argument('-c', '--channel', dest='channel', default='master')
|
||||
add_boolean_argument(parser, 'stable', default=False)
|
||||
|
|
@ -82,6 +82,16 @@ for i in candidate_paths:
|
|||
print("Checking " + i)
|
||||
for root, dirs, files in walk(build_path+"/"+i):
|
||||
for file_ in files:
|
||||
if ".ini" in file_:
|
||||
continue
|
||||
if ".png" in file_:
|
||||
continue
|
||||
if ".effect" in file_:
|
||||
continue
|
||||
if ".py" in file_:
|
||||
continue
|
||||
if ".json" in file_:
|
||||
continue
|
||||
path = root + "/" + file_
|
||||
try:
|
||||
out = check_output("{0}otool -L '{1}'".format(args.prefix, path), shell=True,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue