Skip to content

Commit 44bb30c

Browse files
committed
fix bug of apt
Signed-off-by: Yanxuan Liu <[email protected]>
1 parent c6442a9 commit 44bb30c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

shell-check/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ runs:
2828
using: "composite"
2929
steps:
3030
- name: Install shellcheck
31-
run: sudo apt-get update && sudo apt-get install -y shellcheck
31+
shell: bash
32+
run: |
33+
sudo apt-get update && sudo apt-get install -y shellcheck
3234
- name: Check shell scripts
3335
shell: bash
3436
run: |

0 commit comments

Comments
 (0)