110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
+
|
}
#
# NOTE: This procedure returns a string argument value, which may contain
# spaces, for use with the [exec] command. The value argument is
# the string value to format as an [exec] argument.
#
# <internal>
proc formatExecArgument { value } {
if {[isEagle]} then {
return [appendArgs \" $value \"]
} else {
return $value
}
}
|
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
|
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
|
-
+
|
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]
eval exec $openPgpInstalledCommand
} result]} then {
error "cannot use OpenPGP: may not be installed and/or configured"
}
}
if {![info exists result] || \
![regexp -- $openPgpInstalledPattern $result]} then {
|