Compare commits

..

1 Commits

Author SHA1 Message Date
fancsali 0ae37b3445 Handle signed-by option in __apt_source
Allow users to specify a GPG key fingerprint or keyring file to be
included as the 'signed-by' option.
2022-07-01 16:14:38 +01:00
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ if [ -f "$__object/parameter/signed-by" ]; then
options="$options signed-by=$(cat "$__object/parameter/signed-by")"
fi
if [ "$options" != "" ]; then
if [ "$options" ]; then
options="[$options]"
fi