8000 Added possibility to set custom properties on upload/burn-bootloader/debug commands. by cmaglie · Pull Request #2693 · arduino/arduino-cli · GitHub
[go: up one dir, main page]

Skip to content

Added possibility to set custom properties on upload/burn-bootloader/debug commands. #2693

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fixed dry-run in upload with programmer
  • Loading branch information
cmaglie committed Aug 21, 2024
commit f5407587c4f018e7e2b5cb4444ff8d4c9b478a00
1 change: 1 addition & 0 deletions commands/service_upload.go
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ func (s *arduinoCoreServerImpl) UploadUsingProgrammer(req *rpc.UploadUsingProgra
Verbose: req.GetVerbose(),
Verify: req.GetVerify(),
UserFields: req.GetUserFields(),
DryRun: req.GetDryRun(),
}, streamAdapter)
}

Expand Down
0