This commit is contained in:
2023-03-09 00:49:53 -05:00
parent 7cda6e71b3
commit 9e77106ec4
2 changed files with 3 additions and 3 deletions

View File

@@ -118,9 +118,8 @@
runCommandHook = { runCommandHook = {
newalan = pkgs.writeScript "run-me" '' newalan = pkgs.writeScript "run-me" ''
#!${pkgs.runtimeShell} #!${pkgs.runtimeShell}
whoami echo ${self.rev}
cd Does this match the git rev?
ls
''; '';
}; };
}; };

View File

@@ -43,6 +43,7 @@ async fn main() {
.await .await
.expect("Err creating client"); .expect("Err creating client");
if let Err(why) = client.start().await { if let Err(why) = client.start().await {
println!("Client error: {:?}", why); println!("Client error: {:?}", why);
} }