mirror of
https://github.com/dani-garcia/bw_web_builds.git
synced 2025-03-14 03:48:26 +03:00
Fix applying latest patch if patches is a symlink
This commit is contained in:
parent
2a1dc10f17
commit
5367c2447d
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ if [[ -z ${PATCH_NAME} ]]; then
|
|||
else
|
||||
echo "No exact patch file not found, using latest"
|
||||
# If not, use the latest one
|
||||
PATCH_NAME="$(find ../patches -type f -print0 | xargs -0 basename -a | sort -V | tail -n1)"
|
||||
PATCH_NAME="$(find ../patches/ -type f -print0 | xargs -0 basename -a | sort -V | tail -n1)"
|
||||
fi
|
||||
fi
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue