We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e597058 commit e92d7ecCopy full SHA for e92d7ec
project/scripts/check-cla.sh
@@ -5,7 +5,7 @@ echo "Pull request submitted by $AUTHOR";
5
if [ "$AUTHOR" = "github-actions[bot]" ] ; then
6
echo "CLA check for $AUTHOR successful";
7
else
8
- signed=$(curl -s "https://contribute.akka.io/contribute/cla/scala/check/$AUTHOR" | jq -r ".signed");
+ signed=$(curl -L -s "https://contribute.akka.io/contribute/cla/scala/check/$AUTHOR" | jq -r ".signed");
9
if [ "$signed" = "true" ] ; then
10
11
0 commit comments