scripts/dl_github_archive.py: stringify exception
Closes openwrt/openwrt#1163 Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
This commit is contained in:
parent
28d3a1b54b
commit
ac10975cd7
1 changed files with 5 additions and 4 deletions
|
@ -415,12 +415,13 @@ def main():
|
|||
parser.add_argument('--source', help='Source tarball filename')
|
||||
parser.add_argument('--hash', help='Source tarball\'s expected sha256sum')
|
||||
args = parser.parse_args()
|
||||
method = DownloadGitHubTarball(args)
|
||||
try:
|
||||
method = DownloadGitHubTarball(args)
|
||||
method.download()
|
||||
except Exception:
|
||||
sys.stderr.write('download {} from {} failed\n'.format(args.source, args.url))
|
||||
raise
|
||||
except Exception as ex:
|
||||
sys.stderr.write('{}: Download from {} failed\n'.format(args.source, args.url))
|
||||
sys.stderr.write('{}\n'.format(ex))
|
||||
sys.exit(1)
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
|
|
Loading…
Reference in a new issue