145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
-
+
-
+
|
2. **Add pkgt to the Eagle package path**, then run setup:
```tcl
# Inside Eagle
set pkgtRoot [file normalize "./vendor/pkgt"]
path add [file join $pkgtRoot client 1.0 neutral]
lappend ::auto_path [file join $pkgtRoot client 1.0 neutral]
# Optional: also add externals if not on your path already
path add [file join $pkgtRoot externals Eagle lib Eagle1.0]
lappend ::auto_path [file join $pkgtRoot externals Eagle lib Eagle1.0]
# Run interactive/CLI setup to register repository endpoints and API keys:
source [file join $pkgtRoot client 1.0 neutral pkgr_setup.eagle]
```
|
212
213
214
215
216
217
218
219
220
221
222
|
212
213
214
215
216
217
218
219
220
221
222
|
-
+
|
Use the **uploads** client and/or helper:
```tcl
# Eagle
set pkgtRoot [file normalize "./vendor/pkgt"]
path add [file join $pkgtRoot client 1.0 neutral]
lappend ::auto_path [file join $pkgtRoot client 1.0 neutral]
# Upload tool:
source [file join $pkgtRoot client 1.0 neutral pkgr_upload.eagle]
```
|