summaryrefslogtreecommitdiff
path: root/tl-sign-file
diff options
context:
space:
mode:
Diffstat (limited to 'tl-sign-file')
-rwxr-xr-xtl-sign-file24
1 files changed, 0 insertions, 24 deletions
diff --git a/tl-sign-file b/tl-sign-file
deleted file mode 100755
index 2d54a52..0000000
--- a/tl-sign-file
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-# $Id$
-# Public domain. Originally written 2016, Norbert Preining
-# Sign a file for release in TeX Live
-
-if test $# -ne 1; then
- echo "$0: Exactly one argument must be given, the file to sign." >&2
- exit 1
-fi
-
-# remove previous signature
-rm -f "$1.asc"
-
-prg=gpg
-if ! [ "x$TL_GNUPG" = "x" ] ; then
- # use the environment variable TL_GNUPG
- prg=$TL_GNUPG
-fi
-
-# sign
-$prg --armor \
- --detach-sign \
- --local-user 0xEC00B8DAD32266AA \
- "$1"