appmgr: fix portable

This commit is contained in:
Aiden McClelland
2021-03-01 13:55:16 -07:00
committed by Aiden McClelland
parent 62e0f742ba
commit fd6a1897c8

View File

@@ -163,12 +163,13 @@ async fn inner_main() -> Result<(), Error> {
);
#[cfg(feature = "avahi")]
let app = app.subcommand(
#[allow(unused_mut)]
let mut app = app.subcommand(
SubCommand::with_name("lan")
.about("Configures LAN services")
.subcommand(
SubCommand::with_name("enable")
.about("Publishes the LAN addresses for all services")
.about("Publishes the LAN addresses for all services"),
),
);