350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
|
if {[catch {
eval exec -success Success $openPgpInstalledCommand
} result]} then {
error "cannot use OpenPGP: may not be installed and/or configured"
}
} else {
if {[catch {
eval exec [subst $openPgpInstalledCommand]
} result]} then {
error "cannot use OpenPGP: may not be installed and/or configured"
}
}
if {![info exists result] || \
![regexp -- $openPgpInstalledPattern $result]} then {
|
|
|
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
|
if {[catch {
eval exec -success Success $openPgpInstalledCommand
} result]} then {
error "cannot use OpenPGP: may not be installed and/or configured"
}
} else {
if {[catch {
eval exec $openPgpInstalledCommand
} result]} then {
error "cannot use OpenPGP: may not be installed and/or configured"
}
}
if {![info exists result] || \
![regexp -- $openPgpInstalledPattern $result]} then {
|