We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae2db8f commit a9fa83aCopy full SHA for a9fa83a
main.go
@@ -54,6 +54,12 @@ func main_load() {
54
os.Exit(1)
55
}
56
57
+ // Remove ""s from the strings
58
+ *dfu_path = strings.Replace(*dfu_path, "\"", "", -1)
59
+ *bin_file_name = strings.Replace(*bin_file_name, "\"", "", -1)
60
+ *ble_compliance_string = strings.Replace(*ble_compliance_string, "\"", "", -1)
61
+ *rtos_compliance_string = strings.Replace(*rtos_compliance_string, "\"", "", -1)
62
+
63
dfu := *dfu_path + "/dfu-util"
64
dfu = filepath.ToSlash(dfu)
65
0 commit comments