Skip to content

Commit

Permalink
CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexhuszagh committed Sep 7, 2024
1 parent 0053dbb commit 17fc96c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/breeze_theme.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ namespace breeze_stylesheets
auto [stdout, code] = _run_command("sw_vers r");
if (code != EXIT_SUCCESS)
return false;
auto lines = _split(stdout, '\n');
auto lines = _split(stdout.value(), '\n');
const ::std::string version_key = "ProductVersion:";
for (auto &line : lines)
{
Expand Down

0 comments on commit 17fc96c

Please sign in to comment.