aboutsummaryrefslogtreecommitdiff
path: root/src/deploy.rs
diff options
context:
space:
mode:
authornotgne22021-02-08 23:47:32 -0700
committerGitHub2021-02-08 23:47:32 -0700
commit96a268db2dceb6b6c63d3fa2d47e2c188a1b11f4 (patch)
treecd58b4f6436bda62b08fd6ee266850f28d32769c /src/deploy.rs
parent4f4c1e3cf7c9bc13a1dfd7d0035696cf6e7eaeb6 (diff)
parent8571c086c591cd154f3b23b5c552c1b87bf1975d (diff)
Merge pull request #47 from lovesegfault/style-fixes
changed: assorted fixes
Diffstat (limited to 'src/deploy.rs')
-rw-r--r--src/deploy.rs4
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>,