From 8d7119d5063e251eb444fd5aa576db9d555e4fcc Mon Sep 17 00:00:00 2001 From: Hamcha Date: Sat, 30 Mar 2024 19:49:49 +0100 Subject: [PATCH] fix: bad idea but it might work --- src/stack/arion.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/stack/arion.rs b/src/stack/arion.rs index 918e9f3..677748e 100644 --- a/src/stack/arion.rs +++ b/src/stack/arion.rs @@ -17,6 +17,7 @@ pub(super) async fn run( action: StackCommand, ) -> Result { let output = Command::new(arion_bin) + .uid(0) .args(action.command()) .current_dir(path) .output()