Files
invidious/patch.sh
T
2024-08-14 21:22:21 +02:00

12 lines
150 B
Bash
Executable File

#!/usr/bin/env bash
cd build
PATCHES=../patches/*.patch
for p in $PATCHES; do
echo "applying ${p}..."
git apply --check $p && git apply $p
done