From 727145ed50d60655590c0199656c2378d32bfffc Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Wed, 20 Nov 2024 15:36:06 -0800 Subject: Use @ when accessing variables in templates Access without the @ symbol is the older method and is discouraged. This take leaves alone accesses of variables that are defined within the template, which don't seem to allow an @. This is the second batch of files. --- deployment/releasekey/templates/sign_checksums | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'deployment/releasekey/templates') diff --git a/deployment/releasekey/templates/sign_checksums b/deployment/releasekey/templates/sign_checksums index 9483a1c9..5edf7e57 100644 --- a/deployment/releasekey/templates/sign_checksums +++ b/deployment/releasekey/templates/sign_checksums @@ -7,5 +7,5 @@ fi directory=$1 cd "$directory" for chksum in *.md5 *.sha3 *.sha512; do - gpg --homedir "<%= sign_keydir %>" --yes --sign "$chksum" + gpg --homedir "<%= @sign_keydir %>" --yes --sign "$chksum" done -- cgit v1.2.1