Skip to content

Commit 6592425

Browse files
author
Greg Bowler
committed
debug: output host keys
1 parent f477155 commit 6592425

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

composer-action.bash

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,13 @@ do
142142
envHostKeys+=( $(echo "$line" | cut -f1 -d=) )
143143
done <<<$(env)
144144

145-
echo "KEYS NOT IN DOCKER:"
145+
echo "Host keys:"
146+
for key in "${envHostKeys[@]}"
147+
do
148+
echo "Host: $key"
149+
done
150+
151+
echo "**********************************"
146152

147153
while IFS= read -r line
148154
do

0 commit comments

Comments
 (0)