Skip to content

Commit ddf3c64

Browse files
author
Greg Bowler
committed
wip: quiet skipping
1 parent 2ff57fc commit ddf3c64

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

composer-action.bash

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,9 @@ done <<<$(docker run --rm "${docker_tag}" env)
145145
while IFS= read -r line
146146
do
147147
key=$(echo "$line" | cut -f1 -d=)
148-
if printf '%s\n' "${dockerKeys[@]}" | grep -q -P "^${key}\$"; then
149-
echo "Skipping $line"
148+
if printf '%s\n' "${dockerKeys[@]}" | grep -q -P "^${key}\$"
149+
then
150+
echo "Skipping env variable $key" >> output.log
150151
else
151152
echo "$line" >> DOCKER_ENV
152153
fi

0 commit comments

Comments
 (0)