1
0
mirror of https://github.com/home-assistant/operating-system.git synced 2025-12-25 04:45:45 +00:00

Update patches.sh

This commit is contained in:
Pascal Vizeli
2018-03-17 19:05:45 +01:00
committed by GitHub
parent 6b5f5a59ef
commit c9ddb937ea

View File

@@ -3,6 +3,6 @@ set -e
BUILDROOT_PATCHES="buildroot-patches/"
for patch in "$BUILDROOT_PATCHES"; do
patch -d buildroot -p1 < $${patch};
for patch_file in "$BUILDROOT_PATCHES"; do
patch -d buildroot/ -p1 < ${patch_file};
done