upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/nostr_git_remote_helper/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'nostr_git_remote_helper/src/main.rs')
-rw-r--r--nostr_git_remote_helper/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/nostr_git_remote_helper/src/main.rs b/nostr_git_remote_helper/src/main.rs
index 898f069..849396c 100644
--- a/nostr_git_remote_helper/src/main.rs
+++ b/nostr_git_remote_helper/src/main.rs
@@ -33,7 +33,7 @@ async fn main() -> Result<()> {
33 match &cli.command { 33 match &cli.command {
34 Commands::Capabilities() => sub_commands::capabilities::launch(), 34 Commands::Capabilities() => sub_commands::capabilities::launch(),
35 Commands::Placeholder(args) => { 35 Commands::Placeholder(args) => {
36 futures::executor::block_on(sub_commands::placeholder::launch(&cli, args)) 36 sub_commands::placeholder::launch(&cli, args).await
37 } 37 }
38 } 38 }
39} 39}