343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
|
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
|
-
+
-
+
|
# undefined.
#
# <public>
proc openPgpMustBeInstalled {} {
variable openPgpInstalledCommand
variable openPgpInstalledPattern
set message [string trim {
set message {
Cannot use OpenPGP: it does not appear to be installed.
GNU Privacy Guard (GPG) may be downloaded from "https://www.gnupg.org/"
and then installed. Signed binaries for Windows may be available from
"https://www.gpg4win.org/".
Alternatively, it may be possible to install GNU Privacy Guard (GPG) via
the package management subsystem included with your operating system.
}]
}
if {[isEagle]} then {
if {[catch {
eval exec -success Success $openPgpInstalledCommand
} result]} then {
error $message
}
|