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 5ec4edf commit 162aad2Copy full SHA for 162aad2
workspace_tools/synch.py
@@ -284,11 +284,12 @@ def update_mbed():
284
update_repo("mbed", join(BUILD_DIR, "mbed"))
285
286
def do_sync(options):
287
- global push_remote, quiet, commit_msg
+ global push_remote, quiet, commit_msg, changed
288
289
push_remote = not options.nopush
290
quiet = options.quiet
291
commit_msg = options.msg
292
+ chnaged = []
293
294
if options.code:
295
update_code(OFFICIAL_CODE)
@@ -302,6 +303,8 @@ def do_sync(options):
302
303
if changed:
304
print "Repositories with changes:", changed
305
306
+ return changed
307
+
308
if __name__ == '__main__':
309
parser = OptionParser()
310
0 commit comments