clippy: fix unit_arg

Signed-off-by: ljedrz <ljedrz@gmail.com>
This commit is contained in:
ljedrz 2020-10-06 12:45:13 +02:00
parent c09b7eb3b1
commit 87f7d748a8

View File

@ -57,8 +57,7 @@ impl CLI for WatchCommand {
match rx.recv() { match rx.recv() {
// See changes on the write event // See changes on the write event
Ok(DebouncedEvent::Write(_write)) => { Ok(DebouncedEvent::Write(_write)) => {
let options = (); match BuildCommand::output(()) {
match BuildCommand::output(options) {
Ok(_output) => { Ok(_output) => {
tracing::info!("Built successfully"); tracing::info!("Built successfully");
} }