68
69
70
71
72
73
74
75
76
77
78
79
|
68
69
70
71
72
73
74
75
76
77
78
79
|
-
-
+
+
|
# the auto-path adjustment script fragment (above).
#
if {[info exists pkgr_path]} then {
catch {
::Eagle::exportAndImportPackageCommands ::Eagle \
[list appendArgs getDictionaryValue isEagle \
isWindows readFile writeFile] false false
[list addToPath appendArgs getDictionaryValue \
isEagle isWindows readFile writeFile] false false
}
unset -nocomplain pkgr_path
}
|
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
|
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
|
+
+
+
-
+
+
|
# OpenPGP implementation, without an extension.
#
variable openPgpInstalledFileName; # DEFAULT: gpg2
if {![info exists openPgpInstalledFileName]} then {
if {[isWindows]} then {
set openPgpInstalledFileName gpg2.exe
} else {
set openPgpInstalledFileName gpg2
set openPgpInstalledFileName gpg2
}
}
#
# NOTE: The command to use when attempting to import an OpenPGP key
# file. This must be configured according to the implementation
|