mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
build-script: some buildbot environments don't set $HOME, so don't try
to unconditionally query it Swift SVN r24373
This commit is contained in:
@@ -19,7 +19,7 @@ import subprocess
|
||||
import sys
|
||||
|
||||
|
||||
HOME = os.environ["HOME"]
|
||||
HOME = os.environ.get("HOME", "/")
|
||||
|
||||
|
||||
def _get_default_source_root():
|
||||
|
||||
Reference in New Issue
Block a user