Skip to content

Commit 191535b

Browse files
Follow redirects when checkting CLA
1 parent cb73df2 commit 191535b

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]" || "$AUTHOR" == "dependabot[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)