| Index: claude.py
|
| diff --git a/claude.py b/claude.py
|
| index 967baa6c3f24b4a706e16155e203fe75c4d6ede9..e549742de506ddd475a2c5bc9008c2ae8957052c 100755
|
| --- a/claude.py
|
| +++ b/claude.py
|
| @@ -119,7 +119,8 @@ def _upload(args):
|
| if args.dry_run:
|
| base_command.append('--dry-run')
|
| _logger.info('Uploading network service binary')
|
| - retcode = subprocess.call(base_command + ['network_service'])
|
| + retcode = subprocess.call(base_command + ['--upload-symbols',
|
| + 'network_service'])
|
| if retcode != 0:
|
| return retcode
|
| _logger.info('Uploading network service apptests binary')
|
|
|