Skip to content

Commit

Permalink
deb: pkg install: warn if no deps were found.
Browse files Browse the repository at this point in the history
  • Loading branch information
alenz33 committed May 21, 2015
1 parent 0d6d37b commit 7f6a024
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions conduct/buildsteps/deb.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ def _determineDependencies(self):
out = self._syscall('apt-cache show %s | grep Depends:' % self.pkg)
except RuntimeError as e:
self.log.exception(e)
self.log.warn('Therefore: Assume that there are no dependencies!')
return [] # no deps

out = out[9:] # strip 'Depends: '
Expand Down

0 comments on commit 7f6a024

Please sign in to comment.