This commit is contained in:
2023-03-09 00:54:21 -05:00
parent 9e77106ec4
commit f02e82afa2
2 changed files with 6 additions and 2 deletions

View File

@@ -119,7 +119,12 @@
newalan = pkgs.writeScript "run-me" '' newalan = pkgs.writeScript "run-me" ''
#!${pkgs.runtimeShell} #!${pkgs.runtimeShell}
echo ${self.rev} echo ${self.rev}
Does this match the git rev? ## Todo grab git deployment key
## Use this secret to deploy
## with deploy.nix
##
## Need buildInputs to depend
## on newalan, and also newalan-tests??
''; '';
}; };
}; };

View File

@@ -43,7 +43,6 @@ 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);
} }