Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
leolost2605 committed Feb 10, 2024
1 parent 0bdce07 commit a49b919
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Backends/UbuntuDrivers.vala
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ public class SettingsDaemon.Backends.UbuntuDrivers : Object {
command = new Subprocess (SubprocessFlags.STDOUT_PIPE, drivers_exec_path, "list");
yield command.communicate_utf8_async (null, cancellable, out output, null);
} catch (Error e) {
critical ("Failed to launch ubuntu-drivers: %s", e.message);
return false;
}

Expand All @@ -64,6 +65,7 @@ public class SettingsDaemon.Backends.UbuntuDrivers : Object {
var result = yield get_drivers_output (cancellable, out command_output);
if (!result || command_output == null) {
update_state (UP_TO_DATE);
critical ("Failed to get ubuntu-drivers output");
return;
}

Expand Down

0 comments on commit a49b919

Please sign in to comment.