From 354e65c61fa255bfc804b55fd8a7322b13b7def7 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Wed, 3 Jan 2024 14:30:00 -0800 Subject: [PATCH] Remove quotes around key to allow shell expansion (#2951) --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 71da16a57d..4948b29887 100644 --- a/justfile +++ b/justfile @@ -53,7 +53,7 @@ install-personal-key key='~/.ssh/id_ed25519.pub': #!/usr/bin/env bash set -euxo pipefail for server in alpha balance regtest signet stability testnet; do - ssh-copy-id -i '{{ key }}' root@$server.ordinals.net + ssh-copy-id -i {{ key }} root@$server.ordinals.net done log unit='ord' domain='alpha.ordinals.net':