From a255ff79fc9b18f1eb48e467a1d97baf77cca04a Mon Sep 17 00:00:00 2001
From: John-Paul Robinson <jpr@uab.edu>
Date: Fri, 17 Feb 2023 13:29:13 -0600
Subject: [PATCH] Fix pwd reference for the ca bundle

---
 trust-k8s-ca.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/trust-k8s-ca.sh b/trust-k8s-ca.sh
index f467763..3260208 100644
--- a/trust-k8s-ca.sh
+++ b/trust-k8s-ca.sh
@@ -1,4 +1,4 @@
 # the cabundle file needed to trust ssl endpoints
 
-export OS_CACERT=$(PWD)/rc-k8s-cabundle.cer
+export OS_CACERT=`pwd`/rc-k8s-cabundle.cer
 export CURL_CA_BUNDLE=$OS_CACERT
-- 
GitLab