We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34b4cd9 commit 9b7f5b7Copy full SHA for 9b7f5b7
scripts/app-config.sh
@@ -92,7 +92,7 @@ process_entries() {
92
if [ "$(echo "$config_entry" | jq -r '.properties | type')" = "array" ]; then
93
for entry in $properties; do
94
entry_name=$(echo "$entry" | sed 's/^"//' | sed 's/"$//' | tr -d "*#&") # Remove surrounding quotes and denoters
95
- denoter=$(echo "$entry" | cut -c1)
+ denoter=$(echo "${entry%${entry#?}}")
96
97
[ -n "$(grep "^$entry_name=" "$ENV_FILE")" ] && is_update=true
98
scripts/util/uuid-generator.sh
@@ -1,8 +1,6 @@
1
#!/bin/sh
2
3
generate_uuid() {
4
- local denoter="$1"
5
-
6
if [ "$(uname)" = "Darwin" ]; then
7
uuid="$(uuidgen | tr 'A-Z' 'a-z')"
8
else
0 commit comments