Skip to content

Commit f31a788

Browse files
authored
Update main.yml - apt-get -y to not prompt
1 parent 72f7626 commit f31a788

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/main.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ jobs:
2626
- name: Compile
2727
shell: bash
2828
run: |
29-
apt-get install man-db
29+
apt-get -y update
30+
apt-get install man
3031
make bin 2>&1 | tee MAKE_BIN_OUTPUT
3132
echo "Number of warnings: $(grep "Warning:" MAKE_BIN_OUTPUT | wc -l)" >> $GITHUB_STEP_SUMMARY
3233
echo '```' >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)