File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ func InstallCertificate(cert *paths.Path) error {
110
110
p := C .installCert (ccert )
111
111
s := C .GoString (p )
112
112
if len (s ) != 0 {
113
- oscmd := exec .Command ("osascript" , "-e" , "display dialog \" " + s + "\" buttons \" OK\" with title \" Error installing certificates\" " )
113
+ oscmd := exec .Command ("osascript" , "-e" , "display dialog \" " + s + "\" buttons \" OK\" with title \" Arduino Agent: Error installing certificates\" " )
114
114
_ = oscmd .Run ()
115
115
return errors .New (s )
116
116
}
@@ -124,7 +124,7 @@ func UninstallCertificates() error {
124
124
p := C .uninstallCert ()
125
125
s := C .GoString (p )
126
126
if len (s ) != 0 {
127
- oscmd := exec .Command ("osascript" , "-e" , "display dialog \" " + s + "\" buttons \" OK\" with title \" Error uninstalling certificates\" " )
127
+ oscmd := exec .Command ("osascript" , "-e" , "display dialog \" " + s + "\" buttons \" OK\" with title \" Arduino Agent: Error uninstalling certificates\" " )
128
128
_ = oscmd .Run ()
129
129
return errors .New (s )
130
130
}
You can’t perform that action at this time.
0 commit comments