We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0990da commit dffbe0aCopy full SHA for dffbe0a
payload/Library/installapplications/installapplications.py
@@ -54,7 +54,11 @@ def deplog(text):
54
55
56
def iaslog(text):
57
- NSLog('[InstallApplications] ' + text)
+ try:
58
+ NSLog('[InstallApplications] ' + text)
59
+ except Exception:
60
+ print(text)
61
+ pass
62
63
64
def getconsoleuser():
@@ -699,7 +703,7 @@ def main():
699
703
if stage == 'setupassistant':
700
704
iaslog('Detected setupassistant and user script. '
701
705
'User scripts cannot work in setupassistant stage! '
702
- 'Removing %s') % path
706
+ 'Removing %s' % (path))
707
os.remove(path)
708
pass
709
if 'url' in item:
0 commit comments