mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-06-20 01:02:07 +08:00
e6ce327b8c
* exclude third_party/mapd/ from gitignore * all mapd dependencies * exclude more * more dependencies! * add to files_common * add script to compress locally * compressed dependencies * Revert "more dependencies!" This reverts commit 0cd08beb3fa81b5e037ceb41b5e0554261c56dd5. * Revert "all mapd dependencies" This reverts commit b1a19b82b3911313e543a91d77ece124f5e7ded0. * decompress preloaded deps * fix path * use xz * fix script * update deps * no need * strip first level * missed this * try that * not needed * try except extraction * handle exception * unused --------- Co-authored-by: Comma Device <device@comma.ai>
6 lines
184 B
Bash
6 lines
184 B
Bash
#! usr/bin/bash
|
|
|
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." >/dev/null && pwd)"
|
|
|
|
tar -cf - -C "$DIR/third_party" mapd | xz -9zev -T0 > "$DIR/selfdrive/mapd/assets/mapd_deps.tar.xz"
|