Skip to content

Commit

Permalink
Fix the .so match pattern.
Browse files Browse the repository at this point in the history
  • Loading branch information
sangaline committed Mar 4, 2018
1 parent 0c125d0 commit cfa43ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/exodus_bundler/bundling.py
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ def requires_launcher(self):
return False

# Most libraries will include `.so` in the filename.
return re.match('\.so(?:\.|$)')
return re.search('\.so(?:\.|$)', self.path)

@stored_property
def source(self):
Expand Down

0 comments on commit cfa43ce

Please sign in to comment.