We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 772510d commit f8b8165Copy full SHA for f8b8165
build.py
@@ -44,6 +44,8 @@ def run(self):
44
self.build()
45
46
def build(self, opts=[]):
47
+ opts = list(opts)
48
+
49
if self.platform not in ['windows', 'darwin', 'linux']:
50
sublime.error_message(
51
"Unable to determine operating system or platform '{0}' not supported.".format(self.platform))
@@ -60,6 +62,7 @@ def build(self, opts=[]):
60
62
#If there is an app id specified in the project settings, pass it to the simulator
61
63
try:
64
app_id = self.window.project_data()['application_id']
65
+ opts.append('--appid')
66
opts.append(app_id)
67
except KeyError:
68
pass
0 commit comments