mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-02 09:46:37 +03:00
tools: rmboard.py: Fix conversion from run_pipe to new helper
When this utility was converted from run_pipe and to the new output
helper, two problems were introduced. First, the conversion for calling
"git rm -f" wasn't correct. Change this to match the other conversions.
Second, the final call we do we need to construct the list because we
print that command for the user to use to inspect remaining references.
Fixes: 3d094ce28a ("u_boot_pylib: Add a function to run a single command")
Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
@@ -112,8 +112,7 @@ def rm_board(board):
|
|||||||
rm_kconfig_include(fname)
|
rm_kconfig_include(fname)
|
||||||
|
|
||||||
# Remove unwanted files
|
# Remove unwanted files
|
||||||
cmd = ['git', 'rm', '-r'] + real
|
stdout = command.output('git', 'rm', '-r', *real)
|
||||||
stdout = command.output(*cmd, capture=True)
|
|
||||||
|
|
||||||
## Change the messages as needed
|
## Change the messages as needed
|
||||||
msg = '''arm: Remove %s board
|
msg = '''arm: Remove %s board
|
||||||
@@ -130,7 +129,8 @@ Remove it.
|
|||||||
|
|
||||||
# Check if the board is mentioned anywhere else. The user will need to deal
|
# Check if the board is mentioned anywhere else. The user will need to deal
|
||||||
# with this
|
# with this
|
||||||
print(command.output('git', 'grep', '-il', board, raise_on_error=False))
|
cmd = ['git', 'grep', '-il', board]
|
||||||
|
print(command.output(*cmd, raise_on_error=False))
|
||||||
print(' '.join(cmd))
|
print(' '.join(cmd))
|
||||||
|
|
||||||
for board in sys.argv[1:]:
|
for board in sys.argv[1:]:
|
||||||
|
|||||||
Reference in New Issue
Block a user