Skip to content

Commit

Permalink
Add -y to apt-get install
Browse files Browse the repository at this point in the history
  • Loading branch information
juadde committed May 22, 2024
1 parent 8365738 commit da466dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -300,8 +300,8 @@ jobs:
- name: Run TShark on ARINC429 traffic
run: >
docker run -v .:/test debian sh -c "
apt-get update unzip &&
apt-get install tshark lua-bitop &&
apt-get update &&
apt-get install -y tshark lua-bitop unzip &&
unzip /test/Wireshark_plugin.zip -d /usr &&
tshark -e A429.LABEL -e A429.WORD -e A429.SDI -e A429.SSM -e A429.DATA -e A429.PARITY -E header=y -T fields -r /test/pcapng_files/arinc429_broadcast.pcapng | tee /test/a429_broadcast.output
"
Expand All @@ -327,7 +327,7 @@ jobs:
run: >
docker run -v .:/test debian sh -c "
apt-get update &&
apt-get install tshark unzip &&
apt-get install -y tshark unzip &&
unzip /test/Wireshark_plugin.zip -d /usr &&
tshark -e DISCRETE.VALUE -E header=y -T fields -r pcapng_files/discrete.pcapng | tee discrete.output
"
Expand Down

0 comments on commit da466dc

Please sign in to comment.