mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
binman: Avoid requiring a home directory on startup
This is needed to download tools, but we may not need to do this. At present binman fails to start if HOME is not set. Use the current directory as a default to avoid this. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
70ed05ce6c
commit
139c464c2a
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ FETCH_NAMES = {
|
|||
# Status of tool fetching
|
||||
FETCHED, FAIL, PRESENT, STATUS_COUNT = range(4)
|
||||
|
||||
DOWNLOAD_DESTDIR = os.path.join(os.getenv('HOME'), 'bin')
|
||||
DOWNLOAD_DESTDIR = os.path.expanduser('~/bin')
|
||||
|
||||
class Bintool:
|
||||
"""Tool which operates on binaries to help produce entry contents
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue