diff options
-rwxr-xr-x | update.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ set +e | |||
18 | tag=`git describe --exact-match --tags HEAD 2>/dev/null` | 18 | tag=`git describe --exact-match --tags HEAD 2>/dev/null` |
19 | is_tag=$? | 19 | is_tag=$? |
20 | # adjust for 9 hour time delta between trees | 20 | # adjust for 9 hour time delta between trees |
21 | release_ts=$((`git show -s --format=%ct $tag|tail -n1` + 32400)) | 21 | release_ts=$((`git show -s --format=%ct $tag|tail -1` + 32400)) |
22 | commit=`git -C openbsd rev-list -n 1 --before=$release_ts $openbsd_branch` | 22 | commit=`git -C openbsd rev-list -n 1 --before=$release_ts $openbsd_branch` |
23 | git -C openbsd fetch | 23 | git -C openbsd fetch |
24 | if [ $is_tag -eq 0 ]; then | 24 | if [ $is_tag -eq 0 ]; then |