73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
# package.
#
namespace eval ::PackageDownloader {
variable quiet false
}
#
# NOTE: Load the Package Downloader Client package now.
#
package require Eagle.Package.Downloader
#
# NOTE: Verify that the number of command line arguments meets the basic
# requirements of this tool.
#
if {![info exists ::argv] || [llength $::argv] == 0} then {
|
|
>
|
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
# package.
#
namespace eval ::PackageDownloader {
variable quiet false
}
#
# NOTE: Load the necessary packages now.
#
package require Eagle.Package.Repository
package require Eagle.Package.Downloader
#
# NOTE: Verify that the number of command line arguments meets the basic
# requirements of this tool.
#
if {![info exists ::argv] || [llength $::argv] == 0} then {
|