We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb55470 commit aef71ceCopy full SHA for aef71ce
tools/project.py
@@ -175,6 +175,11 @@ def main():
175
default=[],
176
help="Toolchain profile")
177
178
+ parser.add_argument("--update-packs",
179
+ dest="update_packs",
180
+ action="store_true",
181
+ default=False)
182
+
183
options = parser.parse_args()
184
185
# Print available tests in order and exit
@@ -203,6 +208,11 @@ def main():
203
208
raise
204
209
exit(0)
205
210
211
+ if options.update_packs:
212
+ from tools.arm_pack_manager import Cache
213
+ cache = Cache(True, True)
214
+ cache.cache_descriptors()
215
206
216
# Clean Export Directory
207
217
if options.clean:
218
if exists(EXPORT_DIR):
0 commit comments