1
0
mirror of https://github.com/home-assistant/operating-system.git synced 2026-05-08 09:39:03 +01:00

Create patches.sh

This commit is contained in:
Pascal Vizeli
2018-03-08 16:40:55 +01:00
committed by GitHub
parent eea1794363
commit 64a0530134
+8
View File
@@ -0,0 +1,8 @@
#!/bin/bash
set -e
BUILDROOT_PATCHES="buildroot-patches/"
for patch in "$BUILDROOT_PATCHES"; do
patch -d buildroot -p1 < $${patch};
done