Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
larseggert committed Mar 14, 2024
1 parent db4a04a commit cea9eca
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/actions/nss/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ runs:
exit 0
fi
echo "pkg-config found"
NSS_VERSION=$(pkg-config --modversion nss &> /dev/null)
if ! pkg-config --exists nss; then
echo "BUILD_NSS=1" >> "$GITHUB_ENV"
exit 0
fi
echo "NSS found"
NSS_VERSION=$(pkg-config --modversion nss)
echo "NSS_VERSION=$NSS_VERSION"
if [ "$?" -ne 0 ]; then
echo "BUILD_NSS=1" >> "$GITHUB_ENV"
Expand Down

0 comments on commit cea9eca

Please sign in to comment.