mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2025-03-05 08:17:04 +00:00
scripts/update-gh-pages: fix symlink to stable version
Fix the sorting magic of release directories. Correctly sort according to the version number.
This commit is contained in:
parent
f9ccf2d186
commit
309162eb90
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ fi
|
|||
# Switch to work in the gh-pages worktree
|
||||
cd "$build_dir"
|
||||
|
||||
_stable=`(ls -d1 v*/ || :) | sort -n | tail -n1`
|
||||
_stable=`(ls -d1 v*/ || :) | sort -V | tail -n1`
|
||||
[ -n "$_stable" ] && ln -sfT "$_stable" stable
|
||||
|
||||
# Detect existing versions from the gh-pages branch
|
||||
|
|
Loading…
Add table
Reference in a new issue