mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 22:53:55 +08:00
* CI attempt * fixing location * fix * fixes * hardcode test_url for CI * fixes * cd fix * Update tools/plotjuggler/juggle.py Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com> * Update tools/plotjuggler/test_plotjuggler.py * fixes * fixes Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
13 lines
333 B
Bash
Executable File
13 lines
333 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
mkdir -p bin
|
|
cd bin
|
|
|
|
wget https://github.com/commaai/PlotJuggler/releases/download/latest/libDataLoadRlog.so.tar.gz
|
|
tar -xf libDataLoadRlog.so.tar.gz
|
|
rm libDataLoadRlog.so.tar.gz
|
|
|
|
wget https://github.com/commaai/PlotJuggler/releases/download/latest/plotjuggler.tar.gz
|
|
tar -xf plotjuggler.tar.gz
|
|
rm plotjuggler.tar.gz
|