70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
}
#
# NOTE: This package requires both the package uploader client package.
#
package require Eagle.Package.Uploader
#
# NOTE: Process the command line arguments into their corresponding data
# values, which are contained in an array.
#
setupArgumentData [expr {[info exists ::argv] ? $::argv : [list]}]
#
|
>
>
>
>
>
>
|
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
}
#
# NOTE: This package requires both the package uploader client package.
#
package require Eagle.Package.Uploader
#
# NOTE: Make sure this tool is being run from within the package client
# checkout directory.
#
verifyCheckoutDirectory
#
# NOTE: Process the command line arguments into their corresponding data
# values, which are contained in an array.
#
setupArgumentData [expr {[info exists ::argv] ? $::argv : [list]}]
#
|