6 lines
161 B
Bash
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" |