aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 6dcb885..513fbf2 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -123,6 +123,7 @@ async fn deploy_all_profiles(
}
/// Returns if the available Nix installation supports flakes
+#[inline]
async fn test_flake_support() -> Result<bool, Box<dyn std::error::Error>> {
Ok(Command::new("nix")
.arg("eval")
@@ -136,6 +137,7 @@ async fn test_flake_support() -> Result<bool, Box<dyn std::error::Error>> {
}
/// Evaluates the Nix in the given `repo` and return the processed Data from it
+#[inline]
async fn get_deployment_data(
supports_flakes: bool,
repo: &str,