Skip to content

Commit f8b8165

Browse files
author
TJ Kells
committed
Prepend appid with the correct string argument
1 parent 772510d commit f8b8165

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

build.py

+3
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ def run(self):
4444
self.build()
4545

4646
def build(self, opts=[]):
47+
opts = list(opts)
48+
4749
if self.platform not in ['windows', 'darwin', 'linux']:
4850
sublime.error_message(
4951
"Unable to determine operating system or platform '{0}' not supported.".format(self.platform))
@@ -60,6 +62,7 @@ def build(self, opts=[]):
6062
#If there is an app id specified in the project settings, pass it to the simulator
6163
try:
6264
app_id = self.window.project_data()['application_id']
65+
opts.append('--appid')
6366
opts.append(app_id)
6467
except KeyError:
6568
pass

0 commit comments

Comments
 (0)