2
0
mirror of https://github.com/acmesh-official/acme.sh synced 2025-09-01 06:45:23 +00:00

fix: remove double square brackets

This commit is contained in:
Ludovic Ortega
2024-11-12 22:10:34 +01:00
parent 08807b498e
commit 1bfd4672e1

View File

@@ -67,7 +67,7 @@ truenas_deploy() {
_info "Getting TrueNAS version"
_response=$(_get "$_api_url/system/version")
if [[ "$_response" = *"SCALE"* ]]; then
if echo "$_response" | grep -q "SCALE"; then
_truenas_os=$(echo "$_response" | cut -d '-' -f 2)
_truenas_version=$(echo "$_response" | cut -d '-' -f 3 | tr -d '"' | cut -d '.' -f 1,2)
else