-
Notifications
You must be signed in to change notification settings - Fork 522
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
installinstallmacos.py: Fix bad_dir check, and make warning louder #87
base: main
Are you sure you want to change the base?
Changes from 3 commits
072b65b
217e987
aeaa732
55779df
90dd3b9
4f32302
9990295
ea4ae17
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -531,15 +531,17 @@ def main(): | |
sys.exit('This command requires root (to install packages), so please ' | ||
'run again with sudo or as root.') | ||
|
||
home_dir = os.path.expanduser("~") | ||
current_dir = os.getcwd() | ||
if os.path.expanduser("~") in current_dir: | ||
bad_dirs = ['Documents', 'Desktop', 'Downloads', 'Library'] | ||
for bad_dir in bad_dirs: | ||
if bad_dir in os.path.split(current_dir): | ||
print('Running this script from %s may not work as expected. ' | ||
'If this does not run as expected, please run again from ' | ||
'somewhere else, such as /Users/Shared.' | ||
% current_dir, file=sys.stderr) | ||
bad_subdirs = ['Documents', 'Desktop', 'Downloads', 'Library'] | ||
for bad_subdir in bad_subdirs: | ||
bad_dir = home_dir + os.path.sep + bad_subdir | ||
if bad_dir in current_dir: | ||
print('*********************************************************', file=sys.stderr) | ||
print('*** Running this script from %s may not work as expected.' % current_dir, file=sys.stderr) | ||
print('*** If this does not run as expected, please run again from', file=sys.stderr) | ||
print('*** somewhere else, such as /Users/Shared.', file=sys.stderr) | ||
print('*********************************************************', file=sys.stderr) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks to me like these lines are longer than 80 characters. Please use pylint and make sure the lines are within the current line-lengths. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @gregneagle Did you want me to wrap at 80, or pylint's default of 100? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Pretty sure the existing script wraps at 80. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why not use the previous code formatting? print('*********************************************************\n'
'*** Running this script from %s may not work as expected.\n'
'*** If this does not run as expected, please run again from \n'
'*** somewhere else, such as /Users/Shared.\n'
'*********************************************************'
% current_dir, file=sys.stderr) or similar. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @gregneagle Updated as suggested. Most of the script wraps at 80, although there is one 85-char line (line 460). I left it alone. |
||
|
||
if args.catalogurl: | ||
su_catalog_url = args.catalogurl | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Really should be using os.path.join()