From 427774a7d1df1ad0ca9a0b19f7b464f014f216ab Mon Sep 17 00:00:00 2001 From: The_Spider Date: Mon, 28 Mar 2022 11:58:47 -0500 Subject: [PATCH] escapes bash variable --- build-deluge.jenkins | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-deluge.jenkins b/build-deluge.jenkins index ded333a..9a2327e 100644 --- a/build-deluge.jenkins +++ b/build-deluge.jenkins @@ -18,7 +18,7 @@ getPublicIP() { # curl lookups for i in "https://icanhazip.com" "https://ifconfig.me" "https://api.ipify.org" "https://bot.whatismyipaddress.com" "https://ipinfo.io/ip" "https://ipecho.net/plain"; do - ip=\$(curl -s "${i}") + ip=\$(curl -s "\${i}") if [ "\${ip}" != "" ]; then printf '%s' "\${ip}" return 0