Skip to content

Commit 9699a49

Browse files
authored
Merge pull request #3292 from Pinata-Consulting/make-vars-issue-fix
make: make vars/issue fix
2 parents 0b40fdf + 591fc48 commit 9699a49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flow/util/generate-vars.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ while read -r VAR; do
2222
# they are invalid in shell
2323
continue
2424
fi
25-
name="${VAR%=*}"
25+
name="${VAR%%=*}"
2626
value="${VAR#*=}"
2727
if [[ "${name}" =~ ^[[:digit:]] ]] ; then
2828
# skip if the name starts with a number

0 commit comments

Comments
 (0)