Skip to content

Commit

Permalink
Print explicit path to missing partition table
Browse files Browse the repository at this point in the history
Resolve #1304
  • Loading branch information
valeros authored Feb 12, 2024
1 parent 76df32f commit ecb0953
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder/frameworks/espidf.py
Original file line number Diff line number Diff line change
Expand Up @@ -971,7 +971,7 @@ def generate_empty_partition_image(binary_path, image_size):
def get_partition_info(pt_path, pt_offset, pt_params):
if not os.path.isfile(pt_path):
sys.stderr.write(
"Missing partition table file `%s`\n" % os.path.basename(pt_path)
"Missing partition table file `%s`\n" % pt_path
)
env.Exit(1)

Expand Down

0 comments on commit ecb0953

Please sign in to comment.