summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbootstrap-prepare.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap-prepare.sh b/bootstrap-prepare.sh
index 858d6a1..8042543 100755
--- a/bootstrap-prepare.sh
+++ b/bootstrap-prepare.sh
@@ -94,8 +94,8 @@ patch_packages()
cd pkg
for dir in */; do
- log 'Patching package %s...' "${dir%/}"
if [ -d "${SCRIPT_DIR}/patches/${dir}" ]; then
+ log 'Patching package %s...' "${dir%/}"
for patch in "${SCRIPT_DIR}/patches/${dir}"*; do
patch -N -p 1 -u -d "${dir}" -i "${patch}"
done