Files
sunnypilot/scripts/apply-pr.sh
T
Jason Wen 167ef31602 sunnypilot v2024.11.16-3490
version: sunnypilot v0.9.8.0 release
  date: 2024-11-16T19:13:50
  master commit: fa9234afa0
2024-11-16 19:13:50 +00:00

12 lines
225 B
Bash
Executable File

#!/bin/bash
if [ $# -eq 0 ]; then
echo "usage: $0 <pull-request-number>"
exit 1
fi
BASE="https://github.com/commaai/openpilot/pull/"
PR_NUM="$(echo $1 | grep -o -E '[0-9]+')"
curl -L $BASE/$PR_NUM.patch | git apply -3