We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6527db3 commit c9c4a23Copy full SHA for c9c4a23
src/config.rs
@@ -829,6 +829,9 @@ then initialise it with:
829
if !self.assume_installed.is_empty() && !self.chroot {
830
self.mflags.push("-d".to_string());
831
}
832
+ if self.no_check {
833
+ self.mflags.push("--nocheck".to_string());
834
+ }
835
836
if self.chroot {
837
remove_var("PKGEXT");
src/resolver.rs
@@ -27,7 +27,6 @@ pub fn flags(config: &mut Config) -> aur_depends::Flags {
27
28
if config.no_check {
29
flags.remove(Flags::CHECK_DEPENDS);
30
- config.mflags.push("--nocheck".into());
31
32
if !config.mode.pkgbuild() {
33
flags &= !Flags::PKGBUILDS;
0 commit comments