abuild-sign: indent heredoc

This commit is contained in:
Jakub Jirutka 2016-11-23 21:59:12 +01:00
parent 4d6114bdce
commit 454beb0c5c
1 changed files with 8 additions and 8 deletions

View File

@ -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