Allow usage of sudo while not accessing root
This commit is contained in:
parent
949b98cab8
commit
386ca6acc3
1 changed files with 2 additions and 2 deletions
|
@ -1161,9 +1161,9 @@ class RustBuild(object):
|
|||
"""Check that vendoring is configured properly"""
|
||||
vendor_dir = os.path.join(self.rust_root, 'vendor')
|
||||
if 'SUDO_USER' in os.environ and not self.use_vendored_sources:
|
||||
if os.environ.get('USER') != os.environ['SUDO_USER']:
|
||||
if os.getuid() == 0:
|
||||
self.use_vendored_sources = True
|
||||
print('info: looks like you are running this command under `sudo`')
|
||||
print('info: looks like you\'re trying to run this command as root')
|
||||
print(' and so in order to preserve your $HOME this will now')
|
||||
print(' use vendored sources by default.')
|
||||
if not os.path.exists(vendor_dir):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue