1
0
mirror of https://github.com/home-assistant/operating-system.git synced 2025-12-20 02:18:37 +00:00

Fix patch script

This commit is contained in:
Pascal Vizeli
2018-03-17 23:14:50 +00:00
parent f203ed322b
commit cba8e0edcc

View File

@@ -1,8 +1,6 @@
#!/bin/bash
set -e
BUILDROOT_PATCHES="buildroot-patches/"
for patch_file in "$BUILDROOT_PATCHES"; do
for patch_file in buildroot-patches/*; do
patch -d buildroot/ -p1 < ${patch_file};
done