Skip to content

Commit a5ac99d

Browse files
committed
Merge remote-tracking branch 'private/enterprise-3.9-release' into 3.9.2-patch
2 parents c7deec0 + d297a3c commit a5ac99d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
run: |
1919
sudo apt-get update -y
2020
sudo apt-get install -y devscripts debhelper moreutils fakeroot jq pigz help2man
21-
wget "https://github.com/koalaman/shellcheck/releases/download/latest/shellcheck-latest.linux.x86_64.tar.xz"
22-
tar --xz -xvf "shellcheck-latest.linux.x86_64.tar.xz"
23-
sudo cp shellcheck-latest/shellcheck /usr/bin/shellcheck
21+
wget "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz"
22+
tar --xz -xvf "shellcheck-stable.linux.x86_64.tar.xz"
23+
sudo cp shellcheck-stable/shellcheck /usr/bin/shellcheck
2424
if: matrix.os != 'macos-latest'
2525
- name: Install Dependencies (macOS)
2626
run: |

test/test-shellcheck.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ begin_test "shellcheck: reports no errors or warnings"
1111
set -e
1212
# We manually install the latest Shellcheck on Linux builds as other options
1313
# are too old.
14-
if [ -x "$BASE_PATH/shellcheck-latest/shellcheck" ]; then
15-
shellcheck() { "$BASE_PATH/shellcheck-latest/shellcheck" "$@"; }
14+
if [ -x "$BASE_PATH/shellcheck-stable/shellcheck" ]; then
15+
shellcheck() { "$BASE_PATH/shellcheck-stable/shellcheck" "$@"; }
1616
fi
1717

1818
if ! type shellcheck 1>/dev/null 2>&1; then

0 commit comments

Comments
 (0)