Skip to content

Commit 23fd71b

Browse files
authored
Update del_usb_source.py
1 parent 372eae0 commit 23fd71b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tools/del_usb_source.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ def main(dir_out):
1212
return
1313

1414
esp32_dir = os.path.join(dir_out, "arduino-esp32", "cores", "esp32")
15+
print("esp32s2 sdkconfig path", s2_sdkconfig_path)
1516

1617
with open(s2_sdkconfig_path) as src:
1718
line = src.readline()
@@ -33,10 +34,10 @@ def main(dir_out):
3334
parser = argparse.ArgumentParser()
3435
parser.add_argument(
3536
"-d",
36-
"--dir",
37+
"--dir-out",
3738
dest="dir_out",
3839
required=True,
39-
help="Path to out folder",
40+
help="Path to out directory",
4041
)
4142
args = parser.parse_args()
4243

0 commit comments

Comments
 (0)