diff options
author | notgne2 | 2021-02-08 23:47:32 -0700 |
---|---|---|
committer | GitHub | 2021-02-08 23:47:32 -0700 |
commit | 96a268db2dceb6b6c63d3fa2d47e2c188a1b11f4 (patch) | |
tree | cd58b4f6436bda62b08fd6ee266850f28d32769c /src/deploy.rs | |
parent | 4f4c1e3cf7c9bc13a1dfd7d0035696cf6e7eaeb6 (diff) | |
parent | 8571c086c591cd154f3b23b5c552c1b87bf1975d (diff) |
Merge pull request #47 from lovesegfault/style-fixes
changed: assorted fixes
Diffstat (limited to 'src/deploy.rs')
-rw-r--r-- | src/deploy.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/deploy.rs b/src/deploy.rs index a33721c..686c7b7 100644 --- a/src/deploy.rs +++ b/src/deploy.rs @@ -3,10 +3,10 @@ // // SPDX-License-Identifier: MPL-2.0 +use log::{debug, info}; use std::borrow::Cow; -use tokio::process::Command; - use thiserror::Error; +use tokio::process::Command; struct ActivateCommandData<'a> { sudo: &'a Option<String>, |