Skip to content

Commit e92d7ec

Browse files
committed
Follow redirects when checkting CLA
[Cherry-picked 191535b]
1 parent e597058 commit e92d7ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project/scripts/check-cla.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ echo "Pull request submitted by $AUTHOR";
55
if [ "$AUTHOR" = "github-actions[bot]" ] ; then
66
echo "CLA check for $AUTHOR successful";
77
else
8-
signed=$(curl -s "https://contribute.akka.io/contribute/cla/scala/check/$AUTHOR" | jq -r ".signed");
8+
signed=$(curl -L -s "https://contribute.akka.io/contribute/cla/scala/check/$AUTHOR" | jq -r ".signed");
99
if [ "$signed" = "true" ] ; then
1010
echo "CLA check for $AUTHOR successful";
1111
else

0 commit comments

Comments
 (0)