From 312645e6130c11ed97bc2468a59779824ff04917 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 23 Aug 2020 16:08:30 -0400 Subject: Add versions script --- home/.local/bin/versions | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 home/.local/bin/versions (limited to 'home') diff --git a/home/.local/bin/versions b/home/.local/bin/versions new file mode 100755 index 00000000..25e5ff72 --- /dev/null +++ b/home/.local/bin/versions @@ -0,0 +1,9 @@ +#!/bin/sh +set -u + +for repo in ~/src/git/*; do + version=$(git -C "${repo}" describe --dirty 2>/dev/null) + if [ $? -eq 0 ]; then + echo "${repo##*/}-${version#v}" + fi +done | sort -nr -t '-' -k 3 | column -t -s '-' -- cgit 1.4.1 lue='upstream'>upstream libtls for OpenSSL
summary refs log tree commit diff
path: root/compat/explicit_bzero_win.c (unfollow)
Commit message (Expand)Author
2020-10-22Import LibreSSL 3.2.2June McEnroe
2020-09-29Import LibreSSL 3.2.1June McEnroe
2020-09-29import: Add m4/ax_add_fortify_source.m4June McEnroe
2020-08-05build: Add README.7 to EXTRA_DIST 3.2.0June McEnroe
2020-08-03doc: Indicate that only OpenSSL 1.1.1b and newer workJune McEnroe