1
0
mirror of https://github.com/home-assistant/operating-system.git synced 2025-12-20 02:18:37 +00:00
Files
operating-system/scripts/patches.sh
2018-03-17 23:14:50 +00:00

7 lines
114 B
Bash

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