Files
esp-idf-tools/custom_bin/patch-esp-idf
T
2025-12-17 07:43:20 -07:00

6 lines
161 B
Bash

#!/bin/bash
set -e
echo -e "\napplyan a patch~ $1 to $ESPDIR/esp-idf\n"
cp "$1" "$ESPDIR/esp-idf"
git -C "$ESPDIR/esp-idf" apply "$1"
echo -e "\nall donseies~\n"