Skip to content

Commit 4cde702

Browse files
committed
disable copy to Arduino folder
1 parent 72be81c commit 4cde702

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tools/config_editor/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ These command line arguments can be used to pre-configure the application:
3030
Command line arguments:
3131
-t, --target <target> Comma-separated list of targets to be compiled.
3232
Choose from: all, esp32, esp32s2, esp32s3, esp32c2, esp32c3, esp32c6, esp32h2. Default: all except esp32c2
33-
--copy, --no-copy Enable/disable copying the compiled libraries to arduino-esp32. Enabled by default
33+
--copy, --no-copy Enable/disable copying the compiled libraries to arduino-esp32. Disabled by default
3434
-c, --arduino-path <path> Path to arduino-esp32 directory. Default: OS dependent
3535
-A, --arduino-branch <branch> Branch of the arduino-esp32 repository to be used. Default: set by the build script
3636
-I, --idf-branch <branch> Branch of the ESP-IDF repository to be used. Default: set by the build script

tools/config_editor/app.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
Command line arguments:
1616
-t, --target <target> Comma-separated list of targets to be compiled.
1717
Choose from: all, esp32, esp32s2, esp32s3, esp32c2, esp32c3, esp32c6, esp32h2. Default: all except esp32c2
18-
--copy, --no-copy Enable/disable copying the compiled libraries to arduino-esp32. Enabled by default
18+
--copy, --no-copy Enable/disable copying the compiled libraries to arduino-esp32. Disabled by default
1919
-c, --arduino-path <path> Path to arduino-esp32 directory. Default: OS dependent
2020
-A, --arduino-branch <branch> Branch of the arduino-esp32 repository to be used. Default: set by the build script
2121
-I, --idf-branch <branch> Branch of the ESP-IDF repository to be used. Default: set by the build script
@@ -97,7 +97,7 @@ class ConfigEditorApp(App):
9797

9898
# Set the application options
9999
supported_targets = []
100-
setting_enable_copy = True
100+
setting_enable_copy = False
101101

102102
# Options to be set by the command line arguments
103103
setting_target = ""
@@ -184,7 +184,7 @@ def main() -> None:
184184
parser.add_argument("--copy",
185185
type=bool,
186186
action=argparse.BooleanOptionalAction,
187-
default=True,
187+
default=False,
188188
required=False,
189189
help="Enable/disable copying the compiled libraries to arduino-esp32. Enabled by default")
190190

0 commit comments

Comments
 (0)