Skip to content

Commit

Permalink
Update init.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
SamulKyull authored Apr 11, 2024
1 parent c77018d commit 5991e5f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,10 @@ cp -raf ${ROOT_PATH}/bsp .

# Applying Patches
echo Applying Patches
cp -raf ${ROOT_PATH}/${PATCH_PATH}/${PATCH} .
patch --binary -p1 < ${PATCH}
cp -raf ${ROOT_PATH}/${PATCH_PATH}/${BRANCH}/*.patch .
for patchfile in *.patch; do
patch --binary -p1 < "$patchfile"
done
rm -rf *.patch
cd ${ROOT_PATH}

Expand Down

0 comments on commit 5991e5f

Please sign in to comment.