We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76e41d3 commit 4abbff9Copy full SHA for 4abbff9
merge_changes_from_dlib
@@ -1 +1,9 @@
1
-git subtree pull --prefix dlib https://github.com/davisking/dlib.git master --squash
+#!/bin/sh
2
+
3
+DLIB_LATEST_TAG=$(git ls-remote --tags https://github.com/davisking/dlib.git | \
4
+ awk '/refs\/tags\/v/ {print $2}' | \
5
+ sed 's|refs/tags/||' | \
6
+ sort -V | \
7
+ tail -n 1)
8
9
+git subtree pull --prefix dlib https://github.com/davisking/dlib.git $DLIB_LATEST_TAG --squash
0 commit comments