Skip to content

Commit

Permalink
feat: Linter
Browse files Browse the repository at this point in the history
  • Loading branch information
jaironalves committed Jul 10, 2024
1 parent a5c951a commit 77e0dd6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ _set_github_output() {

_set_github_outputs() {
local properties="$1"
local propertyNameDotReplace="$2"
local propertyNameDotReplace="$2"

while read -r propertyLine;
echo "$properties" | while read -r propertyLine;
do
propertyName=$(_replace_dots "${propertyLine%%=*}" "$propertyNameDotReplace")
propertyValue="${propertyLine#*=}"
propertyName=$(_replace_dots "${propertyLine%%=*}" "$propertyNameDotReplace")
propertyValue="${propertyLine#*=}"
_set_github_output "$propertyName" "$propertyValue"
done < <(echo "$properties")
done
}

set -e
Expand Down

0 comments on commit 77e0dd6

Please sign in to comment.