You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue 480, improve performance of update-index (#496)
## Fixes#480
## Changes
- maintain version info in index.pidx with current downloaded pdsc files
- added list of pdsc's with download errors to return to old version in
index.pidx
## Checklist
<!-- Put an `x` in the boxes. All tasks must be completed and boxes
checked before merging. -->
- [x] 🤖 This change is covered by unit tests (if applicable).
- [x] 🤹 Manual testing has been performed (if necessary).
- [ ] 🛡️ Security impacts have been considered (if relevant).
- [ ] 📖 Documentation updates are complete (if required).
- [ ] 🧠 Third-party dependencies and TPIP updated (if required).
Copy file name to clipboardExpand all lines: cmd/commands/update_index.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ var UpdateIndexCmd = &cobra.Command{
50
50
}
51
51
52
52
funcgetLongUpdateDescription() string {
53
-
return`Updates the public index in `+os.Getenv("CMSIS_PACK_ROOT") +"/.Web/"+installer.PublicIndex+" using the URL in <url> tag inside "+installer.PublicIndex+`.
53
+
return`Updates the public index in `+os.Getenv("CMSIS_PACK_ROOT") +"/.Web/"+installer.PublicIndexName+" using the URL in <url> tag inside "+installer.PublicIndexName+`.
54
54
By default it will also check if all PDSC files under .Web/ need update as well. This can be disabled via the "--sparse" flag.`
0 commit comments