Skip to content
This repository has been archived by the owner on Aug 3, 2023. It is now read-only.

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
gabbifish committed Sep 25, 2019
1 parent 4377992 commit b7d052c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/commands/build/wranglerjs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,10 @@ pub fn run_build_and_watch(target: &Target, tx: Option<Sender<()>>) -> Result<()
watcher.watch(&bucket, RecursiveMode::Recursive)?;
info!("watching static sites asset file {:?}", &bucket);
} else {
failure::bail!("Attempting to watch static assets bucket \"{}\" which doesn't exist", bucket);
failure::bail!(
"Attempting to watch static assets bucket \"{}\" which doesn't exist",
bucket
);
}
}

Expand Down

0 comments on commit b7d052c

Please sign in to comment.