Skip to content
Snippets Groups Projects
Commit e8233d2a authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

Remove PYTHONHOME twiddling which is no longer necessary.

nixpkgs Python tools changed to no longer set PYTHONHOME for us
automatically.
parent 570ba45e
No related branches found
No related tags found
1 merge request!12Fix openssl build issues
......@@ -14,10 +14,6 @@ from configparser import ConfigParser
def main():
(introducerFURL, issuerURL) = argv[1:]
# PYTHONHOME set for Python 3 for this script breaks Python 2 used by
# Tahoe. :/ This is kind of a NixOS Python packaging bug.
del environ["PYTHONHOME"]
run(["tahoe", "--version"])
run([
"tahoe", "create-client",
......
......@@ -17,10 +17,6 @@ log = print
def main():
pemFile, introducerPort, introducerFURL = argv[1:]
# PYTHONHOME set for Python 3 for this script breaks Python 2 used by
# Tahoe. :/ This is kind of a NixOS Python packaging bug.
del environ["PYTHONHOME"]
run(["tahoe", "--version"])
run([
"tahoe", "create-introducer",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment