Skip to content

Commit

Permalink
Merge pull request fossasia#71 from jithinbp/development
Browse files Browse the repository at this point in the history
Bug fixes in setup.py
  • Loading branch information
jithinbp authored Jun 16, 2017
2 parents 3214ac4 + 8bc85f9 commit 4a8eade
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ class CustomInstall(install):
def run(self):
if not hasattr(self,"root"):
install_udev_rules(True)
elif 'debian' not in self.root:
install_udev_rules(True)
elif self.root is not None:
if 'debian' not in self.root:
install_udev_rules(True)
install.run(self)

setup(name='PSL',
Expand Down

0 comments on commit 4a8eade

Please sign in to comment.