diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2016-11-23 21:59:12 +0100 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2016-11-23 21:59:12 +0100 |
commit | 454beb0c5cf8c807ed78c6ff548bc9ed285c0cef (patch) | |
tree | 820448e66ba51766feae9b5a455a59852ebfc808 /abuild-sign.in | |
parent | 4d6114bdce868c9a87f62de17817aac4d5e62799 (diff) | |
download | abuild-454beb0c5cf8c807ed78c6ff548bc9ed285c0cef.tar.gz abuild-454beb0c5cf8c807ed78c6ff548bc9ed285c0cef.tar.bz2 abuild-454beb0c5cf8c807ed78c6ff548bc9ed285c0cef.tar.xz abuild-454beb0c5cf8c807ed78c6ff548bc9ed285c0cef.zip |
abuild-sign: indent heredoc
Diffstat (limited to 'abuild-sign.in')
-rw-r--r-- | abuild-sign.in | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/abuild-sign.in b/abuild-sign.in index b2d1bdb..99684d5 100644 --- a/abuild-sign.in +++ b/abuild-sign.in @@ -87,15 +87,15 @@ if [ $# -eq 0 ] && ! $check_installed; then fi if [ -z "$privkey" ]; then - cat >&2 << __EOF__ -No private key found. Use 'abuild-keygen' to generate the keys. -Then you can either: - * set the PACKAGER_PRIVKEY in $ABUILD_USERCONF - ('abuild-keygen -a' does this for you) - * set the PACKAGER_PRIVKEY in $ABUILD_CONF - * specify the key with the -k option to $program + cat >&2 <<-__EOF__ + No private key found. Use 'abuild-keygen' to generate the keys. + Then you can either: + * set the PACKAGER_PRIVKEY in $ABUILD_USERCONF + ('abuild-keygen -a' does this for you) + * set the PACKAGER_PRIVKEY in $ABUILD_CONF + * specify the key with the -k option to $program -__EOF__ + __EOF__ exit 1 fi |