@salefronts/cli 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/commands/seal.sh +2 -0
- package/package.json +1 -1
- package/sf-cli.code-workspace +10 -0
package/commands/seal.sh
CHANGED
|
@@ -59,8 +59,10 @@ else
|
|
|
59
59
|
# Convert to associative arrays for easier comparison and maintain order
|
|
60
60
|
declare -A k8s_secret_map
|
|
61
61
|
while IFS= read -r line; do
|
|
62
|
+
[[ -z "$line" ]] && continue # skip empty lines
|
|
62
63
|
key=$(echo "$line" | awk '{print $1}')
|
|
63
64
|
value=$(echo "$line" | cut -d' ' -f2-)
|
|
65
|
+
[[ -z "$key" ]] && continue # skip lines with empty key
|
|
64
66
|
k8s_secret_map["$key"]="$value"
|
|
65
67
|
done <<< "$K8S_SECRET_DATA"
|
|
66
68
|
|
package/package.json
CHANGED