This repository has been archived on 2024-12-19. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2024-12-19/build/scripts-2.7/pybitmessage

16 lines
367 B
Python
Executable File

#!/home/coffeedogs/.virtualenvs/pybitmessage-devops/bin/python
import os
import sys
import pkg_resources
import pybitmessage.pathmagic
dist = pkg_resources.get_distribution('pybitmessage')
script_file = os.path.join(dist.location, dist.key, 'bitmessagemain.py')
new_globals = globals()
new_globals.update(__file__=script_file)
execfile(script_file, new_globals)