1
0
mirror of https://github.com/home-assistant/operating-system.git synced 2025-12-24 12:28:43 +00:00
Files
operating-system/scripts/patches.sh
2018-03-08 16:40:55 +01:00

9 lines
145 B
Bash

#!/bin/bash
set -e
BUILDROOT_PATCHES="buildroot-patches/"
for patch in "$BUILDROOT_PATCHES"; do
patch -d buildroot -p1 < $${patch};
done