binman: Use expanduser instead of HOME
There may not be a HOME environment variable, so use the os.expanduser() function instead. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
ca031c0827
commit
ad827e15b2
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ controlled by a description in the board device tree.'''
|
||||||
parser.add_argument('-H', '--full-help', action='store_true',
|
parser.add_argument('-H', '--full-help', action='store_true',
|
||||||
default=False, help='Display the README file')
|
default=False, help='Display the README file')
|
||||||
parser.add_argument('--tooldir', type=str,
|
parser.add_argument('--tooldir', type=str,
|
||||||
default=os.path.join(os.getenv('HOME'), '.binman-tools'),
|
default=os.path.join(os.path.expanduser('~/.binman-tools')),
|
||||||
help='Set the directory to store tools')
|
help='Set the directory to store tools')
|
||||||
parser.add_argument('--toolpath', type=str, action='append',
|
parser.add_argument('--toolpath', type=str, action='append',
|
||||||
help='Add a path to the list of directories containing tools')
|
help='Add a path to the list of directories containing tools')
|
||||||
|
|
Loading…
Reference in a new issue