Skip to content

Commit

Permalink
🚧 conf-window: adjust changes for linux-cachyos options PR !366
Browse files Browse the repository at this point in the history
  • Loading branch information
vnepogodin committed Jan 15, 2025
1 parent e9a3d46 commit c6c85fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/conf-window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@ inline auto convert_to_var_assign(std::string_view option, std::string_view valu
constexpr auto convert_to_var_assign_empty_wrapped(std::string_view option_name, bool option_enabled) noexcept {
using namespace std::string_view_literals;
if (option_enabled) {
return convert_to_var_assign(option_name, "y"sv);
return convert_to_var_assign(option_name, "yes"sv);
}
return std::string{};
return convert_to_var_assign(option_name, "no"sv);
}

auto get_source_array_from_pkgbuild(std::string_view kernel_name_path, std::string_view options_set) noexcept {
Expand Down

0 comments on commit c6c85fc

Please sign in to comment.