Skip to content

Commit ecb0953

Browse files
authored
Print explicit path to missing partition table
Resolve #1304
1 parent 76df32f commit ecb0953

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builder/frameworks/espidf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -971,7 +971,7 @@ def generate_empty_partition_image(binary_path, image_size):
971971
def get_partition_info(pt_path, pt_offset, pt_params):
972972
if not os.path.isfile(pt_path):
973973
sys.stderr.write(
974-
"Missing partition table file `%s`\n" % os.path.basename(pt_path)
974+
"Missing partition table file `%s`\n" % pt_path
975975
)
976976
env.Exit(1)
977977

0 commit comments

Comments
 (0)