File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ let Size = ../../Command/Size.dhall
1414
1515let RunInToolchain = ../../ Command / RunInToolchain. dhall
1616
17+ let shellcheckVersion = " v0.10.0"
18+
1719in Pipeline. build
1820 Pipeline. Config:: {
1921 , spec = JobSpec :: {
@@ -37,8 +39,10 @@ in Pipeline.build
3739 RunInToolchain. runInToolchain
3840 ([] : List Text )
3941 ( " sudo apt-get update"
40- ++ " && sudo apt-get install shellcheck"
41- ++ " && make check-bash "
42+ ++ " && wget https://github.com/koalaman/shellcheck/releases/download/${shellcheckVersion}/shellcheck-${shellcheckVersion}.linux.x86_64.tar.xz"
43+ ++ " && tar xvf shellcheck-${shellcheckVersion}.linux.x86_64.tar.xz"
44+ ++ " && sudo cp shellcheck-${shellcheckVersion}/shellcheck /usr/local/bin/"
45+ ++ " && make check-bash"
4246 )
4347 , label = " Bash: shellcheck"
4448 , key = " check-bash"
You can’t perform that action at this time.
0 commit comments