1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 10:57:55 +01:00

remove quotes

This commit is contained in:
Jason N. 2024-03-04 21:13:58 -05:00
parent fc34ca99e1
commit 139976b82d

View file

@ -11,7 +11,7 @@ do
key=$(echo ${i} | cut -d= -f1) key=$(echo ${i} | cut -d= -f1)
value=$(echo ${i} | cut -d= -f2-) value=$(echo ${i} | cut -d= -f2-)
export ${key}="${value}" export ${key}="${value}"
args+=("${key}=\"${value}\"") args+=("${key}=${value}")
done done
# Pull container # Pull container