diff options
Diffstat (limited to 'subcmds/sync.py')
-rw-r--r-- | subcmds/sync.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/subcmds/sync.py b/subcmds/sync.py index bd5ffd0c..e6dbf1c8 100644 --- a/subcmds/sync.py +++ b/subcmds/sync.py | |||
@@ -309,10 +309,11 @@ later is required to fix a server side protocol bug. | |||
309 | if manifest_path: | 309 | if manifest_path: |
310 | self._ReloadManifest(manifest_path, load_local_manifests) | 310 | self._ReloadManifest(manifest_path, load_local_manifests) |
311 | else: | 311 | else: |
312 | print('error: Update of revsionId from superproject has failed. ' | 312 | print('warning: Update of revisionId from superproject has failed, ' |
313 | 'Please resync with --no-use-superproject option', | 313 | 'repo sync will not use superproject to fetch the source. ', |
314 | 'Please resync with the --no-use-superproject option to avoid this repo warning.', | ||
314 | file=sys.stderr) | 315 | file=sys.stderr) |
315 | if update_result.fatal: | 316 | if update_result.fatal and opt.use_superproject is not None: |
316 | sys.exit(1) | 317 | sys.exit(1) |
317 | return manifest_path | 318 | return manifest_path |
318 | 319 | ||