diff --git a/src/recipe/lang/Dart.c b/src/recipe/lang/Dart.c index ee223df..36382a3 100644 --- a/src/recipe/lang/Dart.c +++ b/src/recipe/lang/Dart.c @@ -92,7 +92,7 @@ pl_dart_setsrc (char *option) chsrc_append_to_file (towrite2, bashrc); } } - chsrc_conclude (&source, ChsrcTypeUntested); + chsrc_conclude (&source, ChsrcTypeAuto); } diff --git a/src/recipe/os/YUM/Rocky-Linux.c b/src/recipe/os/YUM/Rocky-Linux.c index ae0a8f1..b8f073d 100644 --- a/src/recipe/os/YUM/Rocky-Linux.c +++ b/src/recipe/os/YUM/Rocky-Linux.c @@ -67,7 +67,7 @@ os_rockylinux_setsrc (char *option) chsrc_run (cmd, RunOpt_Default); chsrc_run ("dnf makecache", RunOpt_No_Last_New_Line); - chsrc_conclude (&source, ChsrcTypeUntested); + chsrc_conclude (&source, ChsrcTypeAuto); } diff --git a/src/recipe/os/pacman/Arch-Linux.c b/src/recipe/os/pacman/Arch-Linux.c index d0910fd..c9fb01d 100644 --- a/src/recipe/os/pacman/Arch-Linux.c +++ b/src/recipe/os/pacman/Arch-Linux.c @@ -89,7 +89,7 @@ os_arch_setsrc (char *option) { chsrc_run ("pacman -Syy", RunOpt_No_Last_New_Line); } - chsrc_conclude (&source, ChsrcTypeUntested); + chsrc_conclude (&source, ChsrcTypeAuto); }