diff options
Diffstat (limited to 'bitbake/lib/bb/fetch2/ssh.py')
-rw-r--r-- | bitbake/lib/bb/fetch2/ssh.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/bitbake/lib/bb/fetch2/ssh.py b/bitbake/lib/bb/fetch2/ssh.py index 246439ef19..29cc272193 100644 --- a/bitbake/lib/bb/fetch2/ssh.py +++ b/bitbake/lib/bb/fetch2/ssh.py | |||
@@ -114,7 +114,5 @@ class SSH(Fetch): | |||
114 | 114 | ||
115 | bb.fetch2.check_network_access(d, cmd) | 115 | bb.fetch2.check_network_access(d, cmd) |
116 | 116 | ||
117 | (exitstatus, output) = commands.getstatusoutput(cmd) | 117 | runfetchcmd(cmd, d) |
118 | if exitstatus != 0: | 118 | |
119 | print(output) | ||
120 | raise FetchError('Unable to fetch %s' % url) | ||