linux-zen: indentation fix

This commit is contained in:
minoplhy 2024-11-25 23:18:42 +07:00
parent 32a8cf8e62
commit 2832f3e01b

View File

@ -51,14 +51,14 @@ license="GPL-2.0-only"
prepare() {
default_prepare
for i in $source; do
case ${i%::*} in
*.patch.zst)
for i in $source; do
case ${i%::*} in
*.patch.zst)
msg "${i%::*}"
# unzstd ignore symlink. so, realpath does the trick!
unzstd -c "$(realpath $srcdir/$(filename_from_uri $i))" | patch ${patch_args:--p1} || failed="$failed $i"
;;
unzstd -c "$(realpath $srcdir/$(filename_from_uri $i))" | patch ${patch_args:--p1} || failed="$failed $i"
;;
esac
done