From 1d6d87728a970a92ba5a42ba08d00f56d2b05c5e Mon Sep 17 00:00:00 2001 From: BirDt_ Date: Tue, 19 May 2026 22:54:31 +0800 Subject: [PATCH] Minor fix here --- userland/aws.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userland/aws.el b/userland/aws.el index 2e58311..c4a16cf 100644 --- a/userland/aws.el +++ b/userland/aws.el @@ -50,7 +50,7 @@ (auth-fn (lambda () (message (concat "Authenticating with " role " via " aws-cli-auth-provider)) (shell-command (concat aws-cli-auth-provider " login --force --skip-prompt --role " role))))) - (auth-fn) + (funcall auth-fn) (when aws-auto-reauth (setq aws-reauth-timer (run-at-time t (* 60 aws-auto-reauth) auth-fn)))))