Skip to content

Commit

Permalink
adding a stupid check that the configure script is failing on
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Schoeller committed Oct 19, 2024
1 parent cbfd66a commit f461169
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,16 @@ jobs:
- name: run rrdtool
run: /usr/bin/rrdtool

- name: Check if rrdtool is executable
run: |
RRDTOOL=/usr/bin/rrdtool
if ! test -x $RRDTOOL; then
echo "$RRDTOOL is not executable!"
exit 1
else
echo "$RRDTOOL is executable!"
fi
- name: build PNP4Nagios packages
id: build
uses: UCBoulder/oit-sepe-rpmbuild@master
Expand Down

0 comments on commit f461169

Please sign in to comment.