File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 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 {
110110 p := C .installCert (ccert )
111111 s := C .GoString (p )
112112 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\" " )
114114 _ = oscmd .Run ()
115115 return errors .New (s )
116116 }
@@ -124,7 +124,7 @@ func UninstallCertificates() error {
124124 p := C .uninstallCert ()
125125 s := C .GoString (p )
126126 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\" " )
128128 _ = oscmd .Run ()
129129 return errors .New (s )
130130 }
You can’t perform that action at this time.
0 commit comments