File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
import argparse
3
3
import os , re
4
- from os .path import exists , abspath
4
+ from os .path import exists , abspath , expanduser
5
5
from glob import glob
6
6
import yaml
7
7
from commands import getstatusoutput
@@ -105,6 +105,11 @@ if __name__ == "__main__":
105
105
106
106
prunePaths (abspath (args .workDir ))
107
107
108
+ if exists (expanduser ("~/.rootlogon.C" )):
109
+ warning ("You have a ~/.rootlogon.C notice that this might"
110
+ " interphere with your environment in hidden ways.\n "
111
+ "Please review it an make sure you are not force loading any library"
112
+ " which might interphere with the rest of the setup." )
108
113
# Decide if we can use homebrew. If not, we replace it with "true" so
109
114
# that we do not get spurious messages on linux
110
115
homebrew_replacement = ""
You can’t perform that action at this time.
0 commit comments