fix(expand file args): Correctly print the expanded command

This commit is contained in:
radim.karnis
2023-07-24 14:08:58 +02:00
parent 8f3776225a
commit 2bea6f4e3c

View File

@@ -934,7 +934,7 @@ def expand_file_arguments(argv):
else:
new_args.append(arg)
if expanded:
print("esptool %s" % (" ".join(new_args[1:])))
print(f"esptool.py {' '.join(new_args)}")
return new_args
return argv