From 6615fd76e9e00244efbd887ac8ca4f10cf6ee89c Mon Sep 17 00:00:00 2001 From: Christopher Patton Date: Sat, 30 May 2020 20:07:14 -0700 Subject: [PATCH] Fix inaccurate docs about option compatibility --- README.md | 4 ++-- library/aur.py | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5101aca..4d4f16e 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,8 @@ The following helpers are supported and automatically selected, if present, in t |use |**auto**, yay, pacaur, trizen, pikaur, aurman, makepkg |The tool to use, 'auto' uses the first known helper found and makepkg as a fallback.| |use_args |[] |A list of arguments to pass directly to the used tool. Cannot be used unless use is set to something other than 'auto'.| |aur_only |yes, **no** |Limit helper operation to the AUR.| -|skip_pgp_check |yes, **no** |Only valid with makepkg. Skip PGP signatures verification of source file, useful when installing packages without GnuPG properly configured. Cannot be used unless use is set to something other than 'auto'.| -|ignore_arch |yes, **no** |Only valid with makepkg. Ignore a missing or incomplete arch field, useful when the PKGBUILD does not have the arch=('yourarch') field. Cannot be used unless use is set to something other than 'auto'.| +|skip_pgp_check |yes, **no** |Only valid with makepkg. Skip PGP signatures verification of source file, useful when installing packages without GnuPG properly configured. Cannot be used unless use is set to 'makepkg'.| +|ignore_arch |yes, **no** |Only valid with makepkg. Ignore a missing or incomplete arch field, useful when the PKGBUILD does not have the arch=('yourarch') field. Cannot be used unless use is set to 'makepkg'.| ### Note * Either *name* or *upgrade* is required, both cannot be used together. diff --git a/library/aur.py b/library/aur.py index 8295767..150711a 100644 --- a/library/aur.py +++ b/library/aur.py @@ -56,6 +56,7 @@ options: - Only valid with makepkg. Skip PGP signatures verification of source file. This is useful when installing packages without GnuPG (properly) configured. + Cannot be used unless use is set to 'makepkg'. type: bool default: no @@ -63,6 +64,7 @@ options: description: - Only valid with makepkg. Ignore a missing or incomplete arch field, useful when the PKGBUILD does not have the arch=('yourarch') field. + Cannot be used unless use is set to 'makepkg'. type: bool default: no