We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b8be23 commit 814e939Copy full SHA for 814e939
1 file changed
scripts/science/lint-all-sdks.sh
@@ -89,8 +89,11 @@ fi
89
echo "Perl SDKs:"
90
if command -v perl &>/dev/null; then
91
# perl -c loads modules which may not be installed, so check for missing module errors
92
+ # Capture output and status separately to avoid set -e triggering
93
+ set +e
94
PERL_OUTPUT=$(perl -c "$CLIENTS_DIR/perl/sync/src/un.pl" 2>&1)
95
PERL_EXIT=$?
96
+ set -e
97
if [[ $PERL_EXIT -eq 0 ]]; then
98
echo " [PASS] perl-sync"
99
PASSED=$((PASSED + 1))
0 commit comments