84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
#
# NOTE: Verify that the number of command line arguments meets the basic
# requirements of this tool.
#
if {![info exists ::argv] || [llength $::argv] == 0} then {
set localFileName [file join \
[::PackageRepository::getFileTempDirectory] [appendArgs \
pkg_key_ [::PackageRepository::getUniqueSuffix] .asc]]
::PackageDownloader::downloadAndSaveOpenPgpKeyFile \
$localFileName
::PackageRepository::probeForOpenPgpInstallation
::PackageRepository::openPgpMustBeInstalled
|
|
|
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
#
# NOTE: Verify that the number of command line arguments meets the basic
# requirements of this tool.
#
if {![info exists ::argv] || [llength $::argv] == 0} then {
set localFileName [file join \
[::PackageRepository::getFileTempDirectory] [appendArgs \
pkg_keys_ [::PackageRepository::getUniqueSuffix] .asc]]
::PackageDownloader::downloadAndSaveOpenPgpKeyFile \
$localFileName
::PackageRepository::probeForOpenPgpInstallation
::PackageRepository::openPgpMustBeInstalled
|